From 270b8a22353e52324211c7f06113d98b83d55b25 Mon Sep 17 00:00:00 2001 From: Roman-M-git Date: Sat, 21 Feb 2026 14:47:44 +0200 Subject: [PATCH 1/6] added dependencies --- README.md | 0 pom.xml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/pom.xml b/pom.xml index d9d34c4..e41b3ae 100644 --- a/pom.xml +++ b/pom.xml @@ -14,4 +14,58 @@ UTF-8 + + + + + mysql + mysql-connector-java + 8.0.33 + + + + + org.hibernate + hibernate-core-jakarta + 5.6.15.Final + + + + + p6spy + p6spy + 3.9.1 + + + + + io.lettuce + lettuce-core + 6.2.6.RELEASE + + + + + com.fasterxml.jackson.core + jackson-annotations + 2.15.2 + + + + + org.projectlombok + lombok + 1.18.30 + provided + + + + + org.slf4j + slf4j-api + 2.0.9 + + + + \ No newline at end of file From 5378fffced8cb8bc2b5cd0b3efc020e6a3899d05 Mon Sep 17 00:00:00 2001 From: Roman-M-git Date: Sun, 22 Feb 2026 18:32:11 +0200 Subject: [PATCH 2/6] added classes --- .../com/javarush/{ => countryCache}/Main.java | 2 +- .../javarush/countryCache/domain/City.java | 26 +++++++ .../countryCache/domain/Continent.java | 12 ++++ .../javarush/countryCache/domain/Country.java | 67 +++++++++++++++++++ .../countryCache/domain/CountryLanguage.java | 33 +++++++++ 5 files changed, 139 insertions(+), 1 deletion(-) rename src/main/java/com/javarush/{ => countryCache}/Main.java (95%) create mode 100644 src/main/java/com/javarush/countryCache/domain/City.java create mode 100644 src/main/java/com/javarush/countryCache/domain/Continent.java create mode 100644 src/main/java/com/javarush/countryCache/domain/Country.java create mode 100644 src/main/java/com/javarush/countryCache/domain/CountryLanguage.java diff --git a/src/main/java/com/javarush/Main.java b/src/main/java/com/javarush/countryCache/Main.java similarity index 95% rename from src/main/java/com/javarush/Main.java rename to src/main/java/com/javarush/countryCache/Main.java index 34a2199..2c780f4 100644 --- a/src/main/java/com/javarush/Main.java +++ b/src/main/java/com/javarush/countryCache/Main.java @@ -1,4 +1,4 @@ -package com.javarush; +package com.javarush.countryCache; //TIP To Run code, press or // click the icon in the gutter. diff --git a/src/main/java/com/javarush/countryCache/domain/City.java b/src/main/java/com/javarush/countryCache/domain/City.java new file mode 100644 index 0000000..05159f0 --- /dev/null +++ b/src/main/java/com/javarush/countryCache/domain/City.java @@ -0,0 +1,26 @@ +package com.javarush.countryCache.domain; + +import jakarta.persistence.*; +import lombok.Data; + +@Entity +@Table(schema = "world", name = "city") +@Data +public class City { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + + private String name; + + @ManyToOne + @JoinColumn(name = "country_id") + private Country country; + + private String district; + + private Integer population; + + + //Getters and Setters omitted +} diff --git a/src/main/java/com/javarush/countryCache/domain/Continent.java b/src/main/java/com/javarush/countryCache/domain/Continent.java new file mode 100644 index 0000000..d765c24 --- /dev/null +++ b/src/main/java/com/javarush/countryCache/domain/Continent.java @@ -0,0 +1,12 @@ +package com.javarush.countryCache.domain; + +public enum Continent { + + ASIA, + EUROPE, + NORTH_AMERICA, + AFRICA, + OCEANIA, + ANTARCTICA, + SOUTH_AMERICA +} diff --git a/src/main/java/com/javarush/countryCache/domain/Country.java b/src/main/java/com/javarush/countryCache/domain/Country.java new file mode 100644 index 0000000..503b2dd --- /dev/null +++ b/src/main/java/com/javarush/countryCache/domain/Country.java @@ -0,0 +1,67 @@ +package com.javarush.countryCache.domain; +import jakarta.persistence.*; +import lombok.Data; +import java.math.BigDecimal; +import java.util.Set; + +@Entity +@Table(schema = "world", name = "country") +@Data + public class Country { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @Column(name = "id") // может должно быть "country_id"? + private Integer id; + + private String code; + + @Column(name = "code_2") + private String alternativeCode; + + private String name; + + @Column(name = "continent") + @Enumerated(EnumType.ORDINAL) + private Continent continent; + + private String region; + + @Column(name = "surface_area") + private BigDecimal surfaceArea; + + @Column(name = "indep_year") + private Short independenceYear; + + private Integer population; + + @Column(name = "life_expectancy") + private BigDecimal lifeExpectancy; + + @Column(name = "gnp") + private BigDecimal GNP; + + @Column(name = "gnpo_id") + private BigDecimal GNPOId; + + @Column(name = "local_name") + private String localName; + + @Column(name = "government_form") + private String governmentForm; + + @Column(name = "head_of_state") + private String headOfState; + + @OneToOne + @JoinColumn(name = "capital") + private City city; + + @OneToMany(fetch = FetchType.EAGER) + @JoinColumn(name = "country_id") + private Set languages; + + + //Getters and Setters omitted + +} + diff --git a/src/main/java/com/javarush/countryCache/domain/CountryLanguage.java b/src/main/java/com/javarush/countryCache/domain/CountryLanguage.java new file mode 100644 index 0000000..42c5d93 --- /dev/null +++ b/src/main/java/com/javarush/countryCache/domain/CountryLanguage.java @@ -0,0 +1,33 @@ +package com.javarush.countryCache.domain; + +import jakarta.persistence.*; +import lombok.Data; +import org.hibernate.annotations.Type; + +import java.math.BigDecimal; + +@Entity +@Table(schema = "world", name = "country_language") +@Data +public class CountryLanguage { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @Column(name = "id") + private Integer id; + + @ManyToOne + @JoinColumn(name = "country_id") + private Country country; + + private String language; + + @Column(name = "is_official", columnDefinition = "BIT") + @Type(type = "org.hibernate.type.NumericBooleanType") + private Boolean isOfficial; + + private BigDecimal percentage; + + + //Getters and Setters omitted +} + From 5734961588d6f3db3eeeb9f50fae0e798dbf9c23 Mon Sep 17 00:00:00 2001 From: Roman-M-git Date: Sat, 28 Feb 2026 15:00:47 +0200 Subject: [PATCH 3/6] DAO --- pom.xml | 16 ++++ .../java/com/javarush/countryCache/Main.java | 90 ++++++++++++++++--- .../javarush/countryCache/dao/CityDAO.java | 28 ++++++ .../javarush/countryCache/dao/CountryDAO.java | 21 +++++ 4 files changed, 144 insertions(+), 11 deletions(-) create mode 100644 src/main/java/com/javarush/countryCache/dao/CityDAO.java create mode 100644 src/main/java/com/javarush/countryCache/dao/CountryDAO.java diff --git a/pom.xml b/pom.xml index e41b3ae..1abe66b 100644 --- a/pom.xml +++ b/pom.xml @@ -66,6 +66,22 @@ 2.0.9 + + + ch.qos.logback + logback-classic + 1.4.11 + + + + + org.junit.jupiter + junit-jupiter + 5.9.2 + test + + + \ No newline at end of file diff --git a/src/main/java/com/javarush/countryCache/Main.java b/src/main/java/com/javarush/countryCache/Main.java index 2c780f4..a67eec9 100644 --- a/src/main/java/com/javarush/countryCache/Main.java +++ b/src/main/java/com/javarush/countryCache/Main.java @@ -1,17 +1,85 @@ package com.javarush.countryCache; -//TIP To Run code, press or -// click the icon in the gutter. + +import com.javarush.countryCache.dao.CityDAO; +import com.javarush.countryCache.dao.CountryDAO; + +import com.javarush.countryCache.domain.City; +import com.javarush.countryCache.domain.Country; +import com.javarush.countryCache.domain.CountryLanguage; +import io.lettuce.core.RedisClient; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.cfg.Configuration; +import org.hibernate.cfg.Environment; + +import java.util.ArrayList; +import java.util.List; +import java.util.Properties; + +import static java.util.Objects.nonNull; + public class Main { - static void main() { - //TIP Press with your caret at the highlighted text - // to see how IntelliJ IDEA suggests fixing it. - IO.println(String.format("Hello and welcome!")); - - for (int i = 1; i <= 5; i++) { - //TIP Press to start debugging your code. We have set one breakpoint - // for you, but you can always add more by pressing . - IO.println("i = " + i); + + private final SessionFactory sessionFactory; + private final RedisClient redisClient; + + private final ObjectMapper mapper; + + private final CityDAO cityDAO; + private final CountryDAO countryDAO; + + public Main() { + sessionFactory = prepareRelationalDb(); + cityDAO = new CityDAO(sessionFactory); + countryDAO = new CountryDAO(sessionFactory); + + redisClient = prepareRedisClient(); + mapper = new ObjectMapper(); + } + + private SessionFactory prepareRelationalDb() { + final SessionFactory sessionFactory; + Properties properties = new Properties(); + properties.put(Environment.DIALECT, "org.hibernate.dialect.MySQL8Dialect"); + properties.put(Environment.DRIVER, "com.p6spy.engine.spy.P6SpyDriver"); + properties.put(Environment.URL, "jdbc:p6spy:mysql://localhost:3306/world"); + properties.put(Environment.USER, "root"); + properties.put(Environment.PASS, "root"); + properties.put(Environment.CURRENT_SESSION_CONTEXT_CLASS, "thread"); + properties.put(Environment.HBM2DDL_AUTO, "validate"); + properties.put(Environment.STATEMENT_BATCH_SIZE, "100"); + + sessionFactory = new Configuration() + .addAnnotatedClass(City.class) + .addAnnotatedClass(Country.class) + .addAnnotatedClass(CountryLanguage.class) + .addProperties(properties) + .buildSessionFactory(); + return sessionFactory; + } + + private void shutdown() { + if (nonNull(sessionFactory)) { + sessionFactory.close(); + } + if (nonNull(redisClient)) { + redisClient.shutdown(); + } + } + + private List fetchData(Main main) { + try (Session session = main.sessionFactory.getCurrentSession()) { + List allCities = new ArrayList<>(); + session.beginTransaction(); + + int totalCount = main.cityDAO.getTotalCount(); + int step = 500; + for (int i = 0; i < totalCount; i += step) { + allCities.addAll(main.cityDAO.getItems(i, step)); + } + session.getTransaction().commit(); + return allCities; } } } diff --git a/src/main/java/com/javarush/countryCache/dao/CityDAO.java b/src/main/java/com/javarush/countryCache/dao/CityDAO.java new file mode 100644 index 0000000..53f1874 --- /dev/null +++ b/src/main/java/com/javarush/countryCache/dao/CityDAO.java @@ -0,0 +1,28 @@ +package com.javarush.countryCache.dao; + +import com.javarush.countryCache.domain.City; +import org.hibernate.SessionFactory; +import org.hibernate.query.Query; + +import java.util.List; + +public class CityDAO { + + private final SessionFactory sessionFactory; + + public CityDAO(SessionFactory sessionFactory) { + this.sessionFactory = sessionFactory; + } + + public List getItems(int offset, int limit) { + Query query = sessionFactory.getCurrentSession().createQuery("select c from City c", City.class); + query.setFirstResult(offset); + query.setMaxResults(limit); + return query.list(); + } + + public int getTotalCount() { + Query query = sessionFactory.getCurrentSession().createQuery("select count(c) from City c", Long.class); + return Math.toIntExact(query.uniqueResult()); + } +} diff --git a/src/main/java/com/javarush/countryCache/dao/CountryDAO.java b/src/main/java/com/javarush/countryCache/dao/CountryDAO.java new file mode 100644 index 0000000..71e7c72 --- /dev/null +++ b/src/main/java/com/javarush/countryCache/dao/CountryDAO.java @@ -0,0 +1,21 @@ +package com.javarush.countryCache.dao; + +import com.javarush.countryCache.domain.Country; +import org.hibernate.SessionFactory; +import org.hibernate.query.Query; + +import java.util.List; + +public class CountryDAO { + + private final SessionFactory sessionFactory; + + public CountryDAO(SessionFactory sessionFactory) { + this.sessionFactory = sessionFactory; + } + + public List getAll() { + Query query = sessionFactory.getCurrentSession().createQuery("select c from Country c", Country.class); + return query.list(); + } +} From 3f1b17dee60d9f3df1f51509b0e7391a7aca3f4a Mon Sep 17 00:00:00 2001 From: Roman-M-git Date: Sat, 28 Feb 2026 18:28:52 +0200 Subject: [PATCH 4/6] fixed errors+added loginfo --- .idea/dataSources.xml | 17 + .idea/data_source_mapping.xml | 6 + .idea/misc.xml | 3 +- pom.xml | 16 +- spy.log | 1000 +++++++++++++++++ .../java/com/javarush/countryCache/Main.java | 159 ++- .../javarush/countryCache/dao/CityDAO.java | 20 +- .../javarush/countryCache/dao/CountryDAO.java | 2 +- .../javarush/countryCache/domain/Country.java | 88 +- .../countryCache/domain/CountryLanguage.java | 22 +- .../countryCache/redis/CityCountry.java | 38 + .../javarush/countryCache/redis/Language.java | 15 + src/main/resources/logback.xml | 16 + 13 files changed, 1315 insertions(+), 87 deletions(-) create mode 100644 .idea/dataSources.xml create mode 100644 .idea/data_source_mapping.xml create mode 100644 spy.log create mode 100644 src/main/java/com/javarush/countryCache/redis/CityCountry.java create mode 100644 src/main/java/com/javarush/countryCache/redis/Language.java create mode 100644 src/main/resources/logback.xml diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 0000000..2a3e08f --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,17 @@ + + + + + mysql.8 + true + com.mysql.cj.jdbc.Driver + jdbc:mysql://localhost:3306 + + + + + + $ProjectFileDir$ + + + \ No newline at end of file diff --git a/.idea/data_source_mapping.xml b/.idea/data_source_mapping.xml new file mode 100644 index 0000000..11d9e9c --- /dev/null +++ b/.idea/data_source_mapping.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index d0530a3..d58851d 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,7 +1,6 @@ - - + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 1abe66b..1f4f9a7 100644 --- a/pom.xml +++ b/pom.xml @@ -9,8 +9,8 @@ 1.0-SNAPSHOT - 25 - 25 + 17 + 17 UTF-8 @@ -80,6 +80,18 @@ 5.9.2 test + + + com.fasterxml.jackson.core + jackson-databind + 2.17.2 + + + org.jetbrains + annotations + 24.0.0 + compile + diff --git a/spy.log b/spy.log new file mode 100644 index 0000000..43fa58c --- /dev/null +++ b/spy.log @@ -0,0 +1,1000 @@ +1772292370854|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1772292372543|15|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1772292372566|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1772292372764|11|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.gnp as gnp2_1_0_, country0_.gnpo_id as gnpo_id3_1_0_, country0_.code_2 as code_4_1_0_, country0_.capital as capital16_1_0_, country0_.code as code5_1_0_, country0_.continent as continen6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_, languages1_.country_id as country_5_2_1_, languages1_.id as id1_2_1_, languages1_.id as id1_2_2_, languages1_.is_official as is_offic2_2_2_, languages1_.country_id as country_5_2_2_, languages1_.language as language3_2_2_, languages1_.percentage as percenta4_2_2_ from country country0_ left outer join country_language languages1_ on country0_.id=languages1_.country_id where country0_.id=?|select country0_.id as id1_1_0_, country0_.gnp as gnp2_1_0_, country0_.gnpo_id as gnpo_id3_1_0_, country0_.code_2 as code_4_1_0_, country0_.capital as capital16_1_0_, country0_.code as code5_1_0_, country0_.continent as continen6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_, languages1_.country_id as country_5_2_1_, languages1_.id as id1_2_1_, languages1_.id as id1_2_2_, languages1_.is_official as is_offic2_2_2_, languages1_.country_id as country_5_2_2_, languages1_.language as language3_2_2_, languages1_.percentage as percenta4_2_2_ from country country0_ left outer join country_language languages1_ on country0_.id=languages1_.country_id where country0_.id=2 +1772292490864|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1772292492146|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1772292492166|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1772292492324|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.gnp as gnp2_1_0_, country0_.gnpo_id as gnpo_id3_1_0_, country0_.code_2 as code_4_1_0_, country0_.capital as capital16_1_0_, country0_.code as code5_1_0_, country0_.continent as continen6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_, languages1_.country_id as country_5_2_1_, languages1_.id as id1_2_1_, languages1_.id as id1_2_2_, languages1_.is_official as is_offic2_2_2_, languages1_.country_id as country_5_2_2_, languages1_.language as language3_2_2_, languages1_.percentage as percenta4_2_2_ from country country0_ left outer join country_language languages1_ on country0_.id=languages1_.country_id where country0_.id=?|select country0_.id as id1_1_0_, country0_.gnp as gnp2_1_0_, country0_.gnpo_id as gnpo_id3_1_0_, country0_.code_2 as code_4_1_0_, country0_.capital as capital16_1_0_, country0_.code as code5_1_0_, country0_.continent as continen6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_, languages1_.country_id as country_5_2_1_, languages1_.id as id1_2_1_, languages1_.id as id1_2_2_, languages1_.is_official as is_offic2_2_2_, languages1_.country_id as country_5_2_2_, languages1_.language as language3_2_2_, languages1_.percentage as percenta4_2_2_ from country country0_ left outer join country_language languages1_ on country0_.id=languages1_.country_id where country0_.id=2 +1772294387257|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1772294388452|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1772294388480|16|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1772294388616|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.gnp as gnp2_1_0_, country0_.gnpo_id as gnpo_id3_1_0_, country0_.code_2 as code_4_1_0_, country0_.capital as capital16_1_0_, country0_.code as code5_1_0_, country0_.continent as continen6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_, languages1_.country_id as country_5_2_1_, languages1_.id as id1_2_1_, languages1_.id as id1_2_2_, languages1_.is_official as is_offic2_2_2_, languages1_.country_id as country_5_2_2_, languages1_.language as language3_2_2_, languages1_.percentage as percenta4_2_2_ from country country0_ left outer join country_language languages1_ on country0_.id=languages1_.country_id where country0_.id=?|select country0_.id as id1_1_0_, country0_.gnp as gnp2_1_0_, country0_.gnpo_id as gnpo_id3_1_0_, country0_.code_2 as code_4_1_0_, country0_.capital as capital16_1_0_, country0_.code as code5_1_0_, country0_.continent as continen6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_, languages1_.country_id as country_5_2_1_, languages1_.id as id1_2_1_, languages1_.id as id1_2_2_, languages1_.is_official as is_offic2_2_2_, languages1_.country_id as country_5_2_2_, languages1_.language as language3_2_2_, languages1_.percentage as percenta4_2_2_ from country country0_ left outer join country_language languages1_ on country0_.id=languages1_.country_id where country0_.id=2 +1772294428278|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1772294429566|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1772294429611|28|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1772294429758|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.gnp as gnp2_1_0_, country0_.gnpo_id as gnpo_id3_1_0_, country0_.code_2 as code_4_1_0_, country0_.capital as capital16_1_0_, country0_.code as code5_1_0_, country0_.continent as continen6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_, languages1_.country_id as country_5_2_1_, languages1_.id as id1_2_1_, languages1_.id as id1_2_2_, languages1_.is_official as is_offic2_2_2_, languages1_.country_id as country_5_2_2_, languages1_.language as language3_2_2_, languages1_.percentage as percenta4_2_2_ from country country0_ left outer join country_language languages1_ on country0_.id=languages1_.country_id where country0_.id=?|select country0_.id as id1_1_0_, country0_.gnp as gnp2_1_0_, country0_.gnpo_id as gnpo_id3_1_0_, country0_.code_2 as code_4_1_0_, country0_.capital as capital16_1_0_, country0_.code as code5_1_0_, country0_.continent as continen6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_, languages1_.country_id as country_5_2_1_, languages1_.id as id1_2_1_, languages1_.id as id1_2_2_, languages1_.is_official as is_offic2_2_2_, languages1_.country_id as country_5_2_2_, languages1_.language as language3_2_2_, languages1_.percentage as percenta4_2_2_ from country country0_ left outer join country_language languages1_ on country0_.id=languages1_.country_id where country0_.id=2 +1772295534741|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1772295536047|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1772295536080|12|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1772295536205|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=2 +1772295536246|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=159 +1772295536257|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=7 +1772295536263|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=5 +1772295536268|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=62 +1772295536277|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=11 +1772295536282|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=6 +1772295536286|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=3 +1772295536291|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=4 +1772295536296|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=14 +1772295536301|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=8 +1772295536306|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=9 +1772295536321|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=10 +1772295536330|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=1 +1772295536335|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=15 +1772295536342|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=17 +1772295536350|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=25 +1772295536360|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=24 +1772295536367|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=22 +1772295536381|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=32 +1772295536388|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=19 +1772295536397|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=28 +1772295536404|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=20 +1772295536414|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=29 +1772295536421|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=34 +1772295536429|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=30 +1772295536438|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=26 +1772295536448|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=36 +1772295536456|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=31 +1772295536510|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1772295536575|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=2 +1772295536598|14|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=159 +1772295536616|12|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=7 +1772295536630|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=5 +1772295536645|12|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=62 +1772295536664|16|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=11 +1772295536682|14|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=6 +1772295536700|12|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=3 +1772295536714|9|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=4 +1772295536720|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=14 +1772295536731|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=8 +1772295536754|17|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=9 +1772295536770|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=10 +1772295536788|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=1 +1772295536804|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=15 +1772295536839|11|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=17 +1772295536851|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=25 +1772295536860|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=24 +1772295536869|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=22 +1772295536882|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=32 +1772295536893|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=19 +1772295536903|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=28 +1772295536915|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=20 +1772295536925|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=29 +1772295536934|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=34 +1772295536948|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=30 +1772295536962|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=26 +1772295536977|12|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=36 +1772295536985|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=31 +1772295537000|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1772295537035|11|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500, 500 +1772295537078|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1772295537101|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=229 +1772295537108|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=33 +1772295537113|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=23 +1772295537120|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=21 +1772295537125|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=18 +1772295537131|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=54 +1772295537135|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=41 +1772295537141|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=47 +1772295537145|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=51 +1772295537149|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=58 +1772295537154|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=59 +1772295537159|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=61 +1772295537166|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=63 +1772295537174|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=64 +1772295537183|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=193 +1772295537190|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=65 +1772295537197|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=67 +1772295537207|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=237 +1772295537217|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=69 +1772295537224|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=72 +1772295537231|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=71 +1772295537237|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=169 +1772295537251|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=74 +1772295537259|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=76 +1772295537264|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=83 +1772295537269|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=78 +1772295537290|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=79 +1772295537296|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=80 +1772295537302|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=87 +1772295537307|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=88 +1772295537312|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=82 +1772295537318|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=91 +1772295537349|28|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=89 +1772295537396|45|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=81 +1772295537403|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=84 +1772295537409|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=92 +1772295537417|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=97 +1772295537423|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=95 +1772295537440|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=93 +1772295537449|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=190 +1772295537455|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1772295537467|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1772295537479|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=229 +1772295537485|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=33 +1772295537494|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=23 +1772295537501|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=21 +1772295537516|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=18 +1772295537527|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=54 +1772295537531|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=41 +1772295537537|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=47 +1772295537543|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=51 +1772295537547|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=58 +1772295537552|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=59 +1772295537556|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=61 +1772295537573|13|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=63 +1772295537582|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=64 +1772295537586|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=193 +1772295537594|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=65 +1772295537601|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=67 +1772295537610|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=237 +1772295537627|11|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=69 +1772295537636|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=72 +1772295537648|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=71 +1772295537655|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=169 +1772295537671|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=74 +1772295537678|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=76 +1772295537703|23|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=83 +1772295537718|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=78 +1772295537726|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=79 +1772295537732|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=80 +1772295537736|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=87 +1772295537741|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=88 +1772295537747|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=82 +1772295537760|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=91 +1772295537764|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=89 +1772295537770|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=81 +1772295537775|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=84 +1772295537779|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=92 +1772295537784|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=97 +1772295537790|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=95 +1772295537795|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=93 +1772295537802|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=190 +1772295537809|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1772295537831|12|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1000, 500 +1772295537856|9|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1772295537864|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=100 +1772295537893|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=104 +1772295537898|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=103 +1772295537909|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=102 +1772295537914|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=105 +1772295537917|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=106 +1772295537923|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1772295537933|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1772295537939|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=100 +1772295537946|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=104 +1772295537952|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=103 +1772295537959|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=102 +1772295537964|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=105 +1772295537968|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=106 +1772295537976|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1772295537988|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1500, 500 +1772295538017|17|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1772295538025|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=212 +1772295538032|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=16 +1772295538038|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=108 +1772295538042|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=110 +1772295538060|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=235 +1772295538065|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=109 +1772295538105|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=53 +1772295538109|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=236 +1772295538115|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=114 +1772295538122|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=44 +1772295538136|9|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=38 +1772295538150|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=50 +1772295538161|9|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=111 +1772295538171|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=112 +1772295538184|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=37 +1772295538191|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1772295538204|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1772295538209|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=212 +1772295538214|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=16 +1772295538220|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=108 +1772295538224|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=110 +1772295538234|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=235 +1772295538239|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=109 +1772295538243|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=53 +1772295538248|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=236 +1772295538254|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=114 +1772295538260|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=44 +1772295538265|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=38 +1772295538279|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=50 +1772295538286|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=111 +1772295538294|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=112 +1772295538300|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=37 +1772295538311|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1772295538329|13|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2000, 500 +1772295538348|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1772295538370|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=113 +1772295538378|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=115 +1772295538383|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=48 +1772295538391|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=49 +1772295538396|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=46 +1772295538400|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=45 +1772295538406|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=39 +1772295538411|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=174 +1772295538415|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=117 +1772295538421|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=86 +1772295538425|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=96 +1772295538428|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=52 +1772295538432|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=118 +1772295538436|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=55 +1772295538439|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=119 +1772295538445|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=129 +1772295538449|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=126 +1772295538452|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=120 +1772295538455|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=121 +1772295538460|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=122 +1772295538464|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=124 +1772295538469|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=127 +1772295538475|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=128 +1772295538480|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=66 +1772295538485|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=130 +1772295538492|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=134 +1772295538498|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=138 +1772295538503|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=149 +1772295538511|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=135 +1772295538518|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=150 +1772295538532|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=139 +1772295538537|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=140 +1772295538546|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1772295538555|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1772295538569|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=113 +1772295538577|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=115 +1772295538585|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=48 +1772295538594|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=49 +1772295538599|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=46 +1772295538605|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=45 +1772295538613|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=39 +1772295538618|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=174 +1772295538622|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=117 +1772295538627|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=86 +1772295538632|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=96 +1772295538636|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=52 +1772295538642|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=118 +1772295538646|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=55 +1772295538650|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=119 +1772295538655|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=129 +1772295538666|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=126 +1772295538678|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=120 +1772295538684|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=121 +1772295538693|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=122 +1772295538698|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=124 +1772295538703|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=127 +1772295538710|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=128 +1772295538716|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=66 +1772295538721|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=130 +1772295538729|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=134 +1772295538734|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=138 +1772295538739|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=149 +1772295538747|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=135 +1772295538753|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=150 +1772295538761|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=139 +1772295538767|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=140 +1772295538771|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1772295538782|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2500, 500 +1772295538796|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1772295538802|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=137 +1772295538805|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=147 +1772295538810|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=145 +1772295538813|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=148 +1772295538817|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=151 +1772295538821|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=136 +1772295538837|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=75 +1772295538844|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=133 +1772295538849|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=132 +1772295538855|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=142 +1772295538863|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=146 +1772295538872|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=144 +1772295538880|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=141 +1772295538888|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=152 +1772295538895|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=162 +1772295538902|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=161 +1772295538911|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=157 +1772295538917|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=154 +1772295538927|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=156 +1772295538936|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=158 +1772295538941|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=155 +1772295538946|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=160 +1772295538950|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=43 +1772295538955|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=164 +1772295538960|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=165 +1772295538966|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=170 +1772295538969|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=166 +1772295538973|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=171 +1772295538977|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=176 +1772295538981|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=168 +1772295538986|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=167 +1772295538991|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=143 +1772295538995|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=175 +1772295538999|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=173 +1772295539003|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=172 +1772295539009|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=85 +1772295539012|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=179 +1772295539016|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1772295539022|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1772295539026|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=137 +1772295539029|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=147 +1772295539033|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=145 +1772295539037|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=148 +1772295539043|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=151 +1772295539047|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=136 +1772295539051|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=75 +1772295539055|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=133 +1772295539059|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=132 +1772295539062|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=142 +1772295539065|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=146 +1772295539069|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=144 +1772295539074|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=141 +1772295539079|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=152 +1772295539085|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=162 +1772295539092|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=161 +1772295539098|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=157 +1772295539102|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=154 +1772295539108|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=156 +1772295539115|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=158 +1772295539120|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=155 +1772295539125|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=160 +1772295539130|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=43 +1772295539138|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=164 +1772295539146|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=165 +1772295539152|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=170 +1772295539158|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=166 +1772295539165|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=171 +1772295539170|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=176 +1772295539177|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=168 +1772295539180|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=167 +1772295539184|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=143 +1772295539188|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=175 +1772295539192|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=173 +1772295539195|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=172 +1772295539198|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=85 +1772295539201|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=179 +1772295539204|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1772295539214|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3000, 500 +1772295539227|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1772295539232|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=90 +1772295539236|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=178 +1772295539239|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=180 +1772295539243|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=181 +1772295539247|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=183 +1772295539251|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=201 +1772295539257|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=189 +1772295539262|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=116 +1772295539267|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=123 +1772295539272|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=227 +1772295539277|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=196 +1772295539281|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=57 +1772295539295|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=191 +1772295539302|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=238 +1772295539309|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=234 +1772295539315|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=194 +1772295539320|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=197 +1772295539325|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=184 +1772295539332|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=186 +1772295539336|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=203 +1772295539342|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=192 +1772295539348|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=187 +1772295539351|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=199 +1772295539355|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=200 +1772295539361|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=195 +1772295539365|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=125 +1772295539375|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=185 +1772295539380|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=70 +1772295539383|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=198 +1772295539387|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=202 +1772295539391|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=40 +1772295539395|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=204 +1772295539400|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=209 +1772295539403|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=218 +1772295539409|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=219 +1772295539413|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=60 +1772295539416|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=208 +1772295539421|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=207 +1772295539424|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=210 +1772295539428|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=213 +1772295539464|35|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=214 +1772295539476|9|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=206 +1772295539483|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=56 +1772295539489|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=215 +1772295539495|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=216 +1772295539504|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=211 +1772295539509|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=205 +1772295539513|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=217 +1772295539517|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=220 +1772295539524|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=221 +1772295539533|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=98 +1772295539538|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=223 +1772295539544|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=153 +1772295539549|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1772295539555|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1772295539562|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=90 +1772295539568|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=178 +1772295539574|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=180 +1772295539580|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=181 +1772295539583|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=183 +1772295539587|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=201 +1772295539593|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=189 +1772295539598|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=116 +1772295539602|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=123 +1772295539606|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=227 +1772295539611|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=196 +1772295539615|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=57 +1772295539618|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=191 +1772295539621|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=238 +1772295539626|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=234 +1772295539629|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=194 +1772295539632|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=197 +1772295539636|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=184 +1772295539639|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=186 +1772295539642|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=203 +1772295539645|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=192 +1772295539649|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=187 +1772295539652|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=199 +1772295539655|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=200 +1772295539660|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=195 +1772295539663|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=125 +1772295539667|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=185 +1772295539673|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=70 +1772295539679|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=198 +1772295539683|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=202 +1772295539686|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=40 +1772295539691|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=204 +1772295539695|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=209 +1772295539700|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=218 +1772295539703|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=219 +1772295539707|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=60 +1772295539713|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=208 +1772295539717|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=207 +1772295539721|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=210 +1772295539727|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=213 +1772295539731|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=214 +1772295539735|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=206 +1772295539739|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=56 +1772295539746|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=215 +1772295539749|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=216 +1772295539753|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=211 +1772295539759|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=205 +1772295539764|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=217 +1772295539768|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=220 +1772295539772|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=221 +1772295539778|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=98 +1772295539781|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=223 +1772295539783|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=153 +1772295539786|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1772295539794|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3500, 500 +1772295539802|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1772295539806|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=225 +1772295539810|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=27 +1772295539813|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=233 +1772295539816|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=232 +1772295539819|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=226 +1772295539822|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=228 +1772295539829|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=182 +1772295539842|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=231 +1772295539845|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=68 +1772295539848|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1772295539862|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1772295539866|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=225 +1772295539870|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=27 +1772295539875|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=233 +1772295539878|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=232 +1772295539883|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=226 +1772295539887|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=228 +1772295539892|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=182 +1772295539896|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=231 +1772295539899|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=68 +1772295539904|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1772295539911|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 4000, 500 +1772295539915|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1772295539921|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=230 +1772295539927|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=239 +1772295539930|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=177 +1772295539935|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1772295539939|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=230 +1772295539945|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=239 +1772295539949|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=177 +1772295539952|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1772296019599|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1772296020613|14|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1772296020633|9|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1772296020696|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=2 +1772296020721|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=159 +1772296020727|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=7 +1772296020732|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=5 +1772296020735|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=62 +1772296020741|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=11 +1772296020748|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=6 +1772296020752|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=3 +1772296020756|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=4 +1772296020760|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=14 +1772296020763|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=8 +1772296020767|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=9 +1772296020771|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=10 +1772296020779|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=1 +1772296020782|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=15 +1772296020785|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=17 +1772296020789|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=25 +1772296020792|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=24 +1772296020795|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=22 +1772296020798|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=32 +1772296020800|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=19 +1772296020803|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=28 +1772296020807|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=20 +1772296020813|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=29 +1772296020816|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=34 +1772296020819|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=30 +1772296020822|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=26 +1772296020826|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=36 +1772296020829|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=31 +1772296020836|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1772296020848|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=2 +1772296020855|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=159 +1772296020859|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=7 +1772296020862|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=5 +1772296020865|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=62 +1772296020869|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=11 +1772296020874|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=6 +1772296020880|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=3 +1772296020884|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=4 +1772296020887|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=14 +1772296020891|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=8 +1772296020893|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=9 +1772296020897|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=10 +1772296020899|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=1 +1772296020902|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=15 +1772296020906|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=17 +1772296020912|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=25 +1772296020915|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=24 +1772296020918|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=22 +1772296020921|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=32 +1772296020924|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=19 +1772296020927|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=28 +1772296020929|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=20 +1772296020932|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=29 +1772296020935|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=34 +1772296020937|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=30 +1772296020940|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=26 +1772296020946|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=36 +1772296020949|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=31 +1772296020953|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1772296020963|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500, 500 +1772296020975|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1772296020990|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=229 +1772296020994|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=33 +1772296020997|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=23 +1772296021000|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=21 +1772296021003|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=18 +1772296021007|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=54 +1772296021011|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=41 +1772296021014|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=47 +1772296021017|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=51 +1772296021021|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=58 +1772296021024|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=59 +1772296021027|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=61 +1772296021030|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=63 +1772296021032|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=64 +1772296021035|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=193 +1772296021038|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=65 +1772296021041|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=67 +1772296021044|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=237 +1772296021047|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=69 +1772296021049|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=72 +1772296021052|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=71 +1772296021054|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=169 +1772296021058|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=74 +1772296021061|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=76 +1772296021063|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=83 +1772296021066|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=78 +1772296021069|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=79 +1772296021072|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=80 +1772296021075|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=87 +1772296021078|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=88 +1772296021081|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=82 +1772296021084|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=91 +1772296021087|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=89 +1772296021092|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=81 +1772296021096|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=84 +1772296021099|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=92 +1772296021102|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=97 +1772296021105|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=95 +1772296021109|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=93 +1772296021112|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=190 +1772296021115|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1772296021120|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1772296021123|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=229 +1772296021126|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=33 +1772296021129|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=23 +1772296021131|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=21 +1772296021135|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=18 +1772296021138|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=54 +1772296021141|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=41 +1772296021144|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=47 +1772296021146|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=51 +1772296021148|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=58 +1772296021150|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=59 +1772296021153|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=61 +1772296021155|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=63 +1772296021158|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=64 +1772296021161|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=193 +1772296021163|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=65 +1772296021166|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=67 +1772296021169|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=237 +1772296021172|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=69 +1772296021176|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=72 +1772296021179|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=71 +1772296021181|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=169 +1772296021185|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=74 +1772296021188|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=76 +1772296021192|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=83 +1772296021195|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=78 +1772296021198|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=79 +1772296021200|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=80 +1772296021203|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=87 +1772296021205|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=88 +1772296021210|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=82 +1772296021212|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=91 +1772296021215|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=89 +1772296021219|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=81 +1772296021222|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=84 +1772296021225|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=92 +1772296021228|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=97 +1772296021230|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=95 +1772296021233|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=93 +1772296021235|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=190 +1772296021238|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1772296021245|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1000, 500 +1772296021250|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1772296021253|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=100 +1772296021257|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=104 +1772296021260|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=103 +1772296021263|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=102 +1772296021265|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=105 +1772296021267|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=106 +1772296021270|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1772296021273|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1772296021276|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=100 +1772296021279|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=104 +1772296021282|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=103 +1772296021285|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=102 +1772296021288|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=105 +1772296021291|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=106 +1772296021294|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1772296021298|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1500, 500 +1772296021303|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1772296021306|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=212 +1772296021310|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=16 +1772296021312|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=108 +1772296021314|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=110 +1772296021317|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=235 +1772296021320|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=109 +1772296021322|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=53 +1772296021325|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=236 +1772296021327|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=114 +1772296021329|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=44 +1772296021331|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=38 +1772296021333|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=50 +1772296021335|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=111 +1772296021337|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=112 +1772296021341|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=37 +1772296021343|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1772296021346|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1772296021348|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=212 +1772296021350|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=16 +1772296021352|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=108 +1772296021354|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=110 +1772296021357|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=235 +1772296021360|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=109 +1772296021362|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=53 +1772296021364|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=236 +1772296021366|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=114 +1772296021368|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=44 +1772296021371|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=38 +1772296021374|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=50 +1772296021377|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=111 +1772296021379|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=112 +1772296021382|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=37 +1772296021384|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1772296021390|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2000, 500 +1772296021396|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1772296021398|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=113 +1772296021401|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=115 +1772296021404|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=48 +1772296021407|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=49 +1772296021410|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=46 +1772296021412|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=45 +1772296021414|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=39 +1772296021416|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=174 +1772296021419|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=117 +1772296021421|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=86 +1772296021424|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=96 +1772296021427|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=52 +1772296021429|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=118 +1772296021432|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=55 +1772296021435|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=119 +1772296021438|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=129 +1772296021441|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=126 +1772296021444|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=120 +1772296021447|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=121 +1772296021450|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=122 +1772296021452|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=124 +1772296021455|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=127 +1772296021458|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=128 +1772296021461|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=66 +1772296021463|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=130 +1772296021466|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=134 +1772296021468|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=138 +1772296021471|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=149 +1772296021474|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=135 +1772296021477|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=150 +1772296021483|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=139 +1772296021487|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=140 +1772296021490|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1772296021494|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1772296021498|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=113 +1772296021501|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=115 +1772296021503|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=48 +1772296021507|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=49 +1772296021511|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=46 +1772296021513|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=45 +1772296021516|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=39 +1772296021519|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=174 +1772296021522|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=117 +1772296021525|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=86 +1772296021528|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=96 +1772296021531|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=52 +1772296021535|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=118 +1772296021537|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=55 +1772296021542|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=119 +1772296021544|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=129 +1772296021547|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=126 +1772296021550|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=120 +1772296021553|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=121 +1772296021556|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=122 +1772296021560|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=124 +1772296021562|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=127 +1772296021565|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=128 +1772296021567|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=66 +1772296021569|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=130 +1772296021572|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=134 +1772296021575|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=138 +1772296021577|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=149 +1772296021580|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=135 +1772296021583|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=150 +1772296021586|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=139 +1772296021589|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=140 +1772296021592|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1772296021597|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2500, 500 +1772296021602|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1772296021604|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=137 +1772296021608|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=147 +1772296021610|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=145 +1772296021612|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=148 +1772296021614|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=151 +1772296021617|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=136 +1772296021619|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=75 +1772296021622|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=133 +1772296021624|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=132 +1772296021626|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=142 +1772296021628|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=146 +1772296021630|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=144 +1772296021632|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=141 +1772296021634|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=152 +1772296021636|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=162 +1772296021637|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=161 +1772296021639|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=157 +1772296021642|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=154 +1772296021644|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=156 +1772296021647|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=158 +1772296021649|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=155 +1772296021652|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=160 +1772296021655|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=43 +1772296021657|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=164 +1772296021659|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=165 +1772296021662|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=170 +1772296021665|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=166 +1772296021667|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=171 +1772296021670|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=176 +1772296021672|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=168 +1772296021675|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=167 +1772296021677|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=143 +1772296021679|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=175 +1772296021681|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=173 +1772296021683|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=172 +1772296021685|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=85 +1772296021688|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=179 +1772296021690|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1772296021693|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1772296021696|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=137 +1772296021698|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=147 +1772296021700|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=145 +1772296021702|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=148 +1772296021704|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=151 +1772296021707|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=136 +1772296021709|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=75 +1772296021712|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=133 +1772296021714|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=132 +1772296021716|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=142 +1772296021718|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=146 +1772296021721|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=144 +1772296021723|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=141 +1772296021726|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=152 +1772296021728|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=162 +1772296021731|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=161 +1772296021733|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=157 +1772296021735|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=154 +1772296021737|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=156 +1772296021740|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=158 +1772296021742|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=155 +1772296021745|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=160 +1772296021747|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=43 +1772296021750|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=164 +1772296021752|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=165 +1772296021755|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=170 +1772296021759|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=166 +1772296021761|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=171 +1772296021764|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=176 +1772296021766|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=168 +1772296021769|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=167 +1772296021771|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=143 +1772296021774|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=175 +1772296021776|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=173 +1772296021778|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=172 +1772296021780|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=85 +1772296021782|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=179 +1772296021783|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1772296021787|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3000, 500 +1772296021793|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1772296021795|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=90 +1772296021797|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=178 +1772296021800|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=180 +1772296021802|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=181 +1772296021804|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=183 +1772296021807|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=201 +1772296021809|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=189 +1772296021811|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=116 +1772296021814|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=123 +1772296021816|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=227 +1772296021818|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=196 +1772296021820|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=57 +1772296021823|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=191 +1772296021825|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=238 +1772296021827|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=234 +1772296021829|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=194 +1772296021832|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=197 +1772296021834|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=184 +1772296021836|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=186 +1772296021839|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=203 +1772296021841|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=192 +1772296021843|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=187 +1772296021845|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=199 +1772296021848|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=200 +1772296021849|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=195 +1772296021852|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=125 +1772296021854|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=185 +1772296021856|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=70 +1772296021858|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=198 +1772296021861|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=202 +1772296021863|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=40 +1772296021865|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=204 +1772296021867|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=209 +1772296021869|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=218 +1772296021872|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=219 +1772296021874|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=60 +1772296021877|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=208 +1772296021880|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=207 +1772296021882|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=210 +1772296021885|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=213 +1772296021887|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=214 +1772296021889|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=206 +1772296021892|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=56 +1772296021895|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=215 +1772296021897|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=216 +1772296021899|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=211 +1772296021901|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=205 +1772296021904|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=217 +1772296021905|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=220 +1772296021908|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=221 +1772296021910|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=98 +1772296021912|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=223 +1772296021914|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=153 +1772296021915|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1772296021917|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1772296021920|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=90 +1772296021922|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=178 +1772296021924|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=180 +1772296021927|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=181 +1772296021929|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=183 +1772296021931|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=201 +1772296021934|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=189 +1772296021936|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=116 +1772296021938|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=123 +1772296021942|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=227 +1772296021944|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=196 +1772296021946|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=57 +1772296021949|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=191 +1772296021951|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=238 +1772296021953|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=234 +1772296021955|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=194 +1772296021958|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=197 +1772296021960|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=184 +1772296021962|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=186 +1772296021963|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=203 +1772296021965|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=192 +1772296021967|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=187 +1772296021969|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=199 +1772296021971|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=200 +1772296021974|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=195 +1772296021976|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=125 +1772296021978|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=185 +1772296021979|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=70 +1772296021981|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=198 +1772296021983|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=202 +1772296021985|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=40 +1772296021987|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=204 +1772296021989|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=209 +1772296021991|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=218 +1772296021993|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=219 +1772296021995|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=60 +1772296021996|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=208 +1772296021998|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=207 +1772296022000|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=210 +1772296022001|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=213 +1772296022003|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=214 +1772296022005|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=206 +1772296022008|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=56 +1772296022010|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=215 +1772296022011|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=216 +1772296022014|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=211 +1772296022016|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=205 +1772296022018|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=217 +1772296022020|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=220 +1772296022022|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=221 +1772296022026|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=98 +1772296022028|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=223 +1772296022030|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=153 +1772296022033|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1772296022038|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3500, 500 +1772296022044|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1772296022046|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=225 +1772296022048|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=27 +1772296022050|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=233 +1772296022052|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=232 +1772296022055|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=226 +1772296022058|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=228 +1772296022060|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=182 +1772296022062|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=231 +1772296022065|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=68 +1772296022067|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1772296022070|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1772296022072|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=225 +1772296022075|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=27 +1772296022076|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=233 +1772296022079|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=232 +1772296022081|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=226 +1772296022083|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=228 +1772296022086|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=182 +1772296022088|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=231 +1772296022091|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=68 +1772296022093|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1772296022098|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 4000, 500 +1772296022100|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1772296022102|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=230 +1772296022104|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=239 +1772296022106|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=177 +1772296022109|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1772296022111|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=230 +1772296022113|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=239 +1772296022115|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=177 +1772296022117|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| diff --git a/src/main/java/com/javarush/countryCache/Main.java b/src/main/java/com/javarush/countryCache/Main.java index a67eec9..1cd2171 100644 --- a/src/main/java/com/javarush/countryCache/Main.java +++ b/src/main/java/com/javarush/countryCache/Main.java @@ -1,34 +1,51 @@ package com.javarush.countryCache; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; import com.javarush.countryCache.dao.CityDAO; import com.javarush.countryCache.dao.CountryDAO; import com.javarush.countryCache.domain.City; import com.javarush.countryCache.domain.Country; import com.javarush.countryCache.domain.CountryLanguage; +import com.javarush.countryCache.redis.CityCountry; +import com.javarush.countryCache.redis.Language; import io.lettuce.core.RedisClient; +import io.lettuce.core.RedisURI; +import io.lettuce.core.api.StatefulRedisConnection; +import io.lettuce.core.api.sync.RedisStringCommands; import org.hibernate.Session; import org.hibernate.SessionFactory; +import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; import org.hibernate.cfg.Environment; import java.util.ArrayList; import java.util.List; import java.util.Properties; +import java.util.Set; +import java.util.stream.Collectors; import static java.util.Objects.nonNull; public class Main { - private final SessionFactory sessionFactory; private final RedisClient redisClient; - private final ObjectMapper mapper; private final CityDAO cityDAO; private final CountryDAO countryDAO; + public static void main(String[] args) { + Main app = new Main(); + try { + app.run(); + } finally { + app.shutdown(); + } + } + public Main() { sessionFactory = prepareRelationalDb(); cityDAO = new CityDAO(sessionFactory); @@ -38,48 +55,138 @@ public Main() { mapper = new ObjectMapper(); } + public void run() { + List preparedData = new ArrayList<>(); + + try (Session session = sessionFactory.openSession()) { + Transaction tx = session.beginTransaction(); + try { + int totalCount = cityDAO.getTotalCount(session); + + int step = 500; + for (int offset = 0; offset < totalCount; offset += step) { + List batch = cityDAO.getItems(session, offset, step); + preparedData.addAll(transformData(batch)); + + // чтобы память не росла при больших объёмах + session.clear(); + } + + + + tx.commit(); + } catch (Exception e) { + if (tx != null && tx.isActive()) { + tx.rollback(); + } + throw e; + } + } + + // Redis уже после DB транзакции (мы работаем с DTO, не с lazy-сущностями) + pushToRedis(preparedData); + } + + private RedisClient prepareRedisClient() { + RedisClient client = RedisClient.create(RedisURI.create("127.0.0.1", 6379)); + try (StatefulRedisConnection connection = client.connect()) { + System.out.println("Connected to Redis"); + } + return client; + } + private List transformData(List cities) { + return cities.stream().map(city -> { + CityCountry res = new CityCountry(); + res.setId(city.getId()); + res.setName(city.getName()); + res.setPopulation(city.getPopulation()); + res.setDistrict(city.getDistrict()); + + Country country = city.getCountry(); + res.setAlternativeCountryCode(country.getAlternativeCode()); + res.setContinent(country.getContinent()); + res.setCountryCode(country.getCode()); + res.setCountryName(country.getName()); + res.setCountryPopulation(country.getPopulation()); + res.setCountryRegion(country.getRegion()); + res.setCountrySurfaceArea(country.getSurfaceArea()); + + Set countryLanguages = country.getLanguages(); + Set languages = countryLanguages.stream().map(cl -> { + Language language = new Language(); + language.setLanguage(cl.getLanguage()); + language.setOfficial(cl.getOfficial()); + language.setPercentage(cl.getPercentage()); + return language; + }).collect(Collectors.toSet()); + + res.setLanguages(languages); + return res; + }).collect(Collectors.toList()); + } + + private void pushToRedis(List data) { + try (StatefulRedisConnection connection = redisClient.connect()) { + RedisStringCommands sync = connection.sync(); + + for (CityCountry cityCountry : data) { + try { + sync.set(String.valueOf(cityCountry.getId()), mapper.writeValueAsString(cityCountry)); + } catch (JsonProcessingException e) { + e.printStackTrace(); + } + } + } + } + private SessionFactory prepareRelationalDb() { - final SessionFactory sessionFactory; Properties properties = new Properties(); properties.put(Environment.DIALECT, "org.hibernate.dialect.MySQL8Dialect"); properties.put(Environment.DRIVER, "com.p6spy.engine.spy.P6SpyDriver"); properties.put(Environment.URL, "jdbc:p6spy:mysql://localhost:3306/world"); properties.put(Environment.USER, "root"); properties.put(Environment.PASS, "root"); - properties.put(Environment.CURRENT_SESSION_CONTEXT_CLASS, "thread"); properties.put(Environment.HBM2DDL_AUTO, "validate"); properties.put(Environment.STATEMENT_BATCH_SIZE, "100"); - sessionFactory = new Configuration() + // ВАЖНО: если ты используешь openSession(), то thread-context НЕ нужен: + // properties.put(Environment.CURRENT_SESSION_CONTEXT_CLASS, "thread"); + + return new Configuration() .addAnnotatedClass(City.class) .addAnnotatedClass(Country.class) .addAnnotatedClass(CountryLanguage.class) .addProperties(properties) .buildSessionFactory(); - return sessionFactory; } private void shutdown() { - if (nonNull(sessionFactory)) { - sessionFactory.close(); - } - if (nonNull(redisClient)) { - redisClient.shutdown(); - } + if (nonNull(sessionFactory)) sessionFactory.close(); + if (nonNull(redisClient)) redisClient.shutdown(); } +} + + + + + + + + + + + + + + + + + + + + + + + - private List fetchData(Main main) { - try (Session session = main.sessionFactory.getCurrentSession()) { - List allCities = new ArrayList<>(); - session.beginTransaction(); - int totalCount = main.cityDAO.getTotalCount(); - int step = 500; - for (int i = 0; i < totalCount; i += step) { - allCities.addAll(main.cityDAO.getItems(i, step)); - } - session.getTransaction().commit(); - return allCities; - } - } -} diff --git a/src/main/java/com/javarush/countryCache/dao/CityDAO.java b/src/main/java/com/javarush/countryCache/dao/CityDAO.java index 53f1874..4153a76 100644 --- a/src/main/java/com/javarush/countryCache/dao/CityDAO.java +++ b/src/main/java/com/javarush/countryCache/dao/CityDAO.java @@ -1,6 +1,7 @@ package com.javarush.countryCache.dao; import com.javarush.countryCache.domain.City; +import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.query.Query; @@ -14,15 +15,20 @@ public CityDAO(SessionFactory sessionFactory) { this.sessionFactory = sessionFactory; } - public List getItems(int offset, int limit) { - Query query = sessionFactory.getCurrentSession().createQuery("select c from City c", City.class); + public List getItems(Session session, int offset, int limit) { + Query query = session.createQuery("select c from City c", City.class); query.setFirstResult(offset); query.setMaxResults(limit); - return query.list(); + return query.getResultList(); // или query.list() } - public int getTotalCount() { - Query query = sessionFactory.getCurrentSession().createQuery("select count(c) from City c", Long.class); - return Math.toIntExact(query.uniqueResult()); + public int getTotalCount(Session session) { + Query query = session.createQuery("select count(c) from City c", Long.class); + Long count = query.getSingleResult(); // или uniqueResult() + return Math.toIntExact(count); } -} + + public SessionFactory getSessionFactory() { + return sessionFactory; + } +} \ No newline at end of file diff --git a/src/main/java/com/javarush/countryCache/dao/CountryDAO.java b/src/main/java/com/javarush/countryCache/dao/CountryDAO.java index 71e7c72..81bbb71 100644 --- a/src/main/java/com/javarush/countryCache/dao/CountryDAO.java +++ b/src/main/java/com/javarush/countryCache/dao/CountryDAO.java @@ -15,7 +15,7 @@ public CountryDAO(SessionFactory sessionFactory) { } public List getAll() { - Query query = sessionFactory.getCurrentSession().createQuery("select c from Country c", Country.class); + Query query = sessionFactory.getCurrentSession().createQuery("select c from Country c join fetch c.languages", Country.class); return query.list(); } } diff --git a/src/main/java/com/javarush/countryCache/domain/Country.java b/src/main/java/com/javarush/countryCache/domain/Country.java index 503b2dd..9852164 100644 --- a/src/main/java/com/javarush/countryCache/domain/Country.java +++ b/src/main/java/com/javarush/countryCache/domain/Country.java @@ -1,67 +1,69 @@ package com.javarush.countryCache.domain; import jakarta.persistence.*; -import lombok.Data; +import lombok.*; + import java.math.BigDecimal; +import java.util.HashSet; import java.util.Set; @Entity @Table(schema = "world", name = "country") -@Data - public class Country { - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - @Column(name = "id") // может должно быть "country_id"? - private Integer id; - - private String code; - - @Column(name = "code_2") - private String alternativeCode; - - private String name; +@Getter +@Setter +@ToString(exclude = {"city", "languages"}) +@EqualsAndHashCode(onlyExplicitlyIncluded = true) +public class Country { - @Column(name = "continent") - @Enumerated(EnumType.ORDINAL) - private Continent continent; + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @Column(name = "id") + @EqualsAndHashCode.Include + private Integer id; - private String region; + private String code; - @Column(name = "surface_area") - private BigDecimal surfaceArea; + @Column(name = "code_2") + private String alternativeCode; - @Column(name = "indep_year") - private Short independenceYear; + private String name; - private Integer population; + @Column(name = "continent") + @Enumerated(EnumType.ORDINAL) // можно заменить на STRING, если в БД enum текстовый + private Continent continent; - @Column(name = "life_expectancy") - private BigDecimal lifeExpectancy; + private String region; - @Column(name = "gnp") - private BigDecimal GNP; + @Column(name = "surface_area") + private BigDecimal surfaceArea; - @Column(name = "gnpo_id") - private BigDecimal GNPOId; + @Column(name = "indep_year") + private Short independenceYear; - @Column(name = "local_name") - private String localName; + private Integer population; - @Column(name = "government_form") - private String governmentForm; + @Column(name = "life_expectancy") + private BigDecimal lifeExpectancy; - @Column(name = "head_of_state") - private String headOfState; + @Column(name = "gnp") + private BigDecimal gnp; - @OneToOne - @JoinColumn(name = "capital") - private City city; + @Column(name = "gnpo_id") + private BigDecimal gnpoId; - @OneToMany(fetch = FetchType.EAGER) - @JoinColumn(name = "country_id") - private Set languages; + @Column(name = "local_name") + private String localName; + @Column(name = "government_form") + private String governmentForm; - //Getters and Setters omitted + @Column(name = "head_of_state") + private String headOfState; -} + @OneToOne(fetch = FetchType.LAZY) + @JoinColumn(name = "capital") + private City city; + // ВАЖНО: mappedBy, а не JoinColumn здесь! + @OneToMany(mappedBy = "country", fetch = FetchType.LAZY) + private Set languages = new HashSet<>(); +} \ No newline at end of file diff --git a/src/main/java/com/javarush/countryCache/domain/CountryLanguage.java b/src/main/java/com/javarush/countryCache/domain/CountryLanguage.java index 42c5d93..6777429 100644 --- a/src/main/java/com/javarush/countryCache/domain/CountryLanguage.java +++ b/src/main/java/com/javarush/countryCache/domain/CountryLanguage.java @@ -1,21 +1,26 @@ package com.javarush.countryCache.domain; import jakarta.persistence.*; -import lombok.Data; +import lombok.*; import org.hibernate.annotations.Type; import java.math.BigDecimal; @Entity @Table(schema = "world", name = "country_language") -@Data +@Getter +@Setter +@ToString(exclude = {"country"}) +@EqualsAndHashCode(onlyExplicitlyIncluded = true) public class CountryLanguage { + @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id") + @EqualsAndHashCode.Include private Integer id; - @ManyToOne + @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "country_id") private Country country; @@ -23,11 +28,16 @@ public class CountryLanguage { @Column(name = "is_official", columnDefinition = "BIT") @Type(type = "org.hibernate.type.NumericBooleanType") - private Boolean isOfficial; + private Boolean official; private BigDecimal percentage; +} + + + + + + - //Getters and Setters omitted -} diff --git a/src/main/java/com/javarush/countryCache/redis/CityCountry.java b/src/main/java/com/javarush/countryCache/redis/CityCountry.java new file mode 100644 index 0000000..71aeb52 --- /dev/null +++ b/src/main/java/com/javarush/countryCache/redis/CityCountry.java @@ -0,0 +1,38 @@ +package com.javarush.countryCache.redis; + +import com.javarush.countryCache.domain.Continent; +import lombok.Data; + + +import java.math.BigDecimal; +import java.util.Set; + +@Data +public class CityCountry { + + private Integer id; + + private String name; + + private String district; + + private Integer population; + + private String countryCode; + + private String alternativeCountryCode; + + private String countryName; + + private Continent continent; + + private String countryRegion; + + private BigDecimal countrySurfaceArea; + + private Integer countryPopulation; + + private Set languages; + + //Getters and Setters omitted +} diff --git a/src/main/java/com/javarush/countryCache/redis/Language.java b/src/main/java/com/javarush/countryCache/redis/Language.java new file mode 100644 index 0000000..32bd184 --- /dev/null +++ b/src/main/java/com/javarush/countryCache/redis/Language.java @@ -0,0 +1,15 @@ +package com.javarush.countryCache.redis; + +import lombok.Data; + +import java.math.BigDecimal; + +@Data +public class Language { + + private String language; + private Boolean Official; + private BigDecimal percentage; + + //Getters and Setters omitted +} diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml new file mode 100644 index 0000000..99e1f3b --- /dev/null +++ b/src/main/resources/logback.xml @@ -0,0 +1,16 @@ + + + + + + + + + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + + + + + + \ No newline at end of file From 8da865209a8942686e2bb8f286f970900dbf1047 Mon Sep 17 00:00:00 2001 From: Roman-M-git Date: Wed, 11 Mar 2026 13:20:38 +0200 Subject: [PATCH 5/6] added test+pom --- .idea/data_source_mapping.xml | 6 - pom.xml | 12 + spy.log | 3248 +++++++++++++++++ .../java/com/javarush/countryCache/Main.java | 211 +- src/test/java/BenchmarkTest.java | 187 + src/test/java/PerformanceTest.java | 177 + 6 files changed, 3756 insertions(+), 85 deletions(-) delete mode 100644 .idea/data_source_mapping.xml create mode 100644 src/test/java/BenchmarkTest.java create mode 100644 src/test/java/PerformanceTest.java diff --git a/.idea/data_source_mapping.xml b/.idea/data_source_mapping.xml deleted file mode 100644 index 11d9e9c..0000000 --- a/.idea/data_source_mapping.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/pom.xml b/pom.xml index 1f4f9a7..d328b40 100644 --- a/pom.xml +++ b/pom.xml @@ -92,6 +92,18 @@ 24.0.0 compile + + org.openjdk.jmh + jmh-core + 1.37 + test + + + org.openjdk.jmh + jmh-generator-annprocess + 1.37 + test + diff --git a/spy.log b/spy.log index 43fa58c..6f4983c 100644 --- a/spy.log +++ b/spy.log @@ -998,3 +998,3251 @@ 1772296022113|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=239 1772296022115|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=177 1772296022117|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162777310|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162778743|27|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1773162778761|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1773162778841|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=2 +1773162778873|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=159 +1773162778878|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=7 +1773162778884|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=5 +1773162778894|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=62 +1773162778898|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=11 +1773162778903|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=6 +1773162778906|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=3 +1773162778910|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=4 +1773162778914|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=14 +1773162778921|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=8 +1773162778927|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=9 +1773162778931|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=10 +1773162778936|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=1 +1773162778939|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=15 +1773162778943|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=17 +1773162778946|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=25 +1773162778949|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=24 +1773162778952|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=22 +1773162778958|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=32 +1773162778962|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=19 +1773162778965|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=28 +1773162778968|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=20 +1773162778971|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=29 +1773162778974|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=34 +1773162778977|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=30 +1773162778979|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=26 +1773162778982|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=36 +1773162778985|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=31 +1773162778993|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1773162779010|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=2 +1773162779016|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=159 +1773162779020|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=7 +1773162779023|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=5 +1773162779026|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=62 +1773162779029|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=11 +1773162779032|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=6 +1773162779036|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=3 +1773162779043|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=4 +1773162779046|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=14 +1773162779049|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=8 +1773162779052|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=9 +1773162779055|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=10 +1773162779058|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=1 +1773162779061|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=15 +1773162779065|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=17 +1773162779068|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=25 +1773162779071|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=24 +1773162779073|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=22 +1773162779077|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=32 +1773162779084|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=19 +1773162779087|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=28 +1773162779090|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=20 +1773162779093|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=29 +1773162779096|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=34 +1773162779099|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=30 +1773162779102|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=26 +1773162779104|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=36 +1773162779108|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=31 +1773162779112|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1773162779956|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500, 500 +1773162779966|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1773162779981|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=229 +1773162779984|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=33 +1773162779986|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=23 +1773162779990|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=21 +1773162779993|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=18 +1773162779996|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=54 +1773162779999|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=41 +1773162780003|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=47 +1773162780009|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=51 +1773162780017|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=58 +1773162780022|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=59 +1773162780026|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=61 +1773162780029|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=63 +1773162780033|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=64 +1773162780037|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=193 +1773162780040|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=65 +1773162780043|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=67 +1773162780047|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=237 +1773162780053|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=69 +1773162780056|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=72 +1773162780059|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=71 +1773162780062|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=169 +1773162780065|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=74 +1773162780068|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=76 +1773162780070|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=83 +1773162780074|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=78 +1773162780076|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=79 +1773162780080|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=80 +1773162780087|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=87 +1773162780090|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=88 +1773162780094|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=82 +1773162780097|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=91 +1773162780100|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=89 +1773162780103|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=81 +1773162780106|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=84 +1773162780109|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=92 +1773162780112|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=97 +1773162780115|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=95 +1773162780122|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=93 +1773162780127|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=190 +1773162780129|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1773162780134|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1773162780138|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=229 +1773162780141|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=33 +1773162780145|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=23 +1773162780149|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=21 +1773162780153|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=18 +1773162780156|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=54 +1773162780159|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=41 +1773162780162|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=47 +1773162780164|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=51 +1773162780165|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=58 +1773162780168|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=59 +1773162780172|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=61 +1773162780176|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=63 +1773162780181|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=64 +1773162780184|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=193 +1773162780187|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=65 +1773162780190|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=67 +1773162780193|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=237 +1773162780196|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=69 +1773162780199|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=72 +1773162780203|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=71 +1773162780206|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=169 +1773162780209|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=74 +1773162780212|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=76 +1773162780218|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=83 +1773162780224|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=78 +1773162780227|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=79 +1773162780230|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=80 +1773162780233|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=87 +1773162780236|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=88 +1773162780240|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=82 +1773162780242|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=91 +1773162780245|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=89 +1773162780248|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=81 +1773162780251|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=84 +1773162780254|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=92 +1773162780259|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=97 +1773162780265|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=95 +1773162780268|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=93 +1773162780271|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=190 +1773162780273|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1773162780851|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1000, 500 +1773162780859|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1773162780863|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=100 +1773162780866|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=104 +1773162780869|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=103 +1773162780872|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=102 +1773162780876|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=105 +1773162780878|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=106 +1773162780881|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1773162780883|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1773162780889|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=100 +1773162780894|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=104 +1773162780897|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=103 +1773162780900|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=102 +1773162780902|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=105 +1773162780905|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=106 +1773162780908|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1773162781470|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1500, 500 +1773162781476|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1773162781479|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=212 +1773162781481|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=16 +1773162781484|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=108 +1773162781487|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=110 +1773162781489|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=235 +1773162781492|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=109 +1773162781495|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=53 +1773162781499|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=236 +1773162781503|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=114 +1773162781506|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=44 +1773162781509|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=38 +1773162781512|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=50 +1773162781514|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=111 +1773162781517|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=112 +1773162781519|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=37 +1773162781521|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1773162781525|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1773162781528|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=212 +1773162781530|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=16 +1773162781533|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=108 +1773162781537|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=110 +1773162781542|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=235 +1773162781546|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=109 +1773162781548|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=53 +1773162781551|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=236 +1773162781553|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=114 +1773162781555|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=44 +1773162781558|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=38 +1773162781560|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=50 +1773162781562|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=111 +1773162781565|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=112 +1773162781568|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=37 +1773162781571|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1773162782146|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2000, 500 +1773162782151|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1773162782155|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=113 +1773162782160|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=115 +1773162782165|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=48 +1773162782168|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=49 +1773162782171|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=46 +1773162782173|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=45 +1773162782176|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=39 +1773162782180|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=174 +1773162782182|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=117 +1773162782185|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=86 +1773162782188|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=96 +1773162782190|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=52 +1773162782192|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=118 +1773162782199|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=55 +1773162782204|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=119 +1773162782207|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=129 +1773162782210|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=126 +1773162782212|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=120 +1773162782214|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=121 +1773162782218|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=122 +1773162782221|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=124 +1773162782223|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=127 +1773162782225|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=128 +1773162782228|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=66 +1773162782233|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=130 +1773162782237|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=134 +1773162782240|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=138 +1773162782242|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=149 +1773162782245|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=135 +1773162782249|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=150 +1773162782255|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=139 +1773162782259|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=140 +1773162782261|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1773162782266|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1773162782272|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=113 +1773162782275|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=115 +1773162782278|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=48 +1773162782281|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=49 +1773162782284|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=46 +1773162782287|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=45 +1773162782290|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=39 +1773162782293|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=174 +1773162782295|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=117 +1773162782299|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=86 +1773162782301|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=96 +1773162782305|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=52 +1773162782308|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=118 +1773162782314|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=55 +1773162782321|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=119 +1773162782325|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=129 +1773162782328|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=126 +1773162782331|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=120 +1773162782334|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=121 +1773162782338|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=122 +1773162782341|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=124 +1773162782344|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=127 +1773162782346|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=128 +1773162782350|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=66 +1773162782353|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=130 +1773162782356|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=134 +1773162782359|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=138 +1773162782362|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=149 +1773162782365|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=135 +1773162782368|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=150 +1773162782374|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=139 +1773162782381|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=140 +1773162782385|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1773162782947|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2500, 500 +1773162782955|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1773162782959|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=137 +1773162782964|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=147 +1773162782967|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=145 +1773162782970|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=148 +1773162782973|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=151 +1773162782976|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=136 +1773162782978|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=75 +1773162782980|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=133 +1773162782982|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=132 +1773162782985|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=142 +1773162782988|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=146 +1773162782991|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=144 +1773162782994|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=141 +1773162783000|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=152 +1773162783003|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=162 +1773162783007|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=161 +1773162783009|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=157 +1773162783015|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=154 +1773162783017|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=156 +1773162783021|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=158 +1773162783023|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=155 +1773162783026|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=160 +1773162783029|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=43 +1773162783032|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=164 +1773162783038|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=165 +1773162783042|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=170 +1773162783046|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=166 +1773162783048|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=171 +1773162783051|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=176 +1773162783054|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=168 +1773162783057|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=167 +1773162783060|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=143 +1773162783063|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=175 +1773162783066|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=173 +1773162783072|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=172 +1773162783077|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=85 +1773162783080|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=179 +1773162783082|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1773162783086|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1773162783090|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=137 +1773162783094|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=147 +1773162783097|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=145 +1773162783100|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=148 +1773162783103|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=151 +1773162783109|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=136 +1773162783113|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=75 +1773162783115|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=133 +1773162783118|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=132 +1773162783122|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=142 +1773162783127|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=146 +1773162783129|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=144 +1773162783131|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=141 +1773162783134|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=152 +1773162783137|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=162 +1773162783140|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=161 +1773162783143|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=157 +1773162783146|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=154 +1773162783148|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=156 +1773162783151|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=158 +1773162783154|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=155 +1773162783157|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=160 +1773162783159|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=43 +1773162783162|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=164 +1773162783164|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=165 +1773162783168|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=170 +1773162783170|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=166 +1773162783174|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=171 +1773162783180|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=176 +1773162783186|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=168 +1773162783189|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=167 +1773162783192|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=143 +1773162783194|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=175 +1773162783197|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=173 +1773162783199|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=172 +1773162783202|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=85 +1773162783205|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=179 +1773162783208|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1773162784162|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3000, 500 +1773162784171|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1773162784182|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=90 +1773162784187|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=178 +1773162784192|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=180 +1773162784200|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=181 +1773162784207|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=183 +1773162784211|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=201 +1773162784215|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=189 +1773162784219|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=116 +1773162784225|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=123 +1773162784232|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=227 +1773162784241|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=196 +1773162784247|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=57 +1773162784253|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=191 +1773162784259|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=238 +1773162784264|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=234 +1773162784269|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=194 +1773162784274|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=197 +1773162784280|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=184 +1773162784284|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=186 +1773162784292|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=203 +1773162784298|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=192 +1773162784302|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=187 +1773162784308|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=199 +1773162784311|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=200 +1773162784316|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=195 +1773162784321|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=125 +1773162784326|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=185 +1773162784331|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=70 +1773162784336|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=198 +1773162784343|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=202 +1773162784348|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=40 +1773162784353|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=204 +1773162784358|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=209 +1773162784363|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=218 +1773162784369|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=219 +1773162784376|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=60 +1773162784385|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=208 +1773162784392|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=207 +1773162784400|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=210 +1773162784405|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=213 +1773162784411|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=214 +1773162784418|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=206 +1773162784423|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=56 +1773162784428|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=215 +1773162784434|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=216 +1773162784440|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=211 +1773162784444|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=205 +1773162784447|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=217 +1773162784450|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=220 +1773162784453|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=221 +1773162784461|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=98 +1773162784467|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=223 +1773162784471|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=153 +1773162784475|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1773162784479|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1773162784484|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=90 +1773162784488|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=178 +1773162784493|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=180 +1773162784497|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=181 +1773162784504|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=183 +1773162784510|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=201 +1773162784513|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=189 +1773162784519|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=116 +1773162784522|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=123 +1773162784526|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=227 +1773162784528|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=196 +1773162784531|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=57 +1773162784540|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=191 +1773162784545|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=238 +1773162784548|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=234 +1773162784550|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=194 +1773162784553|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=197 +1773162784557|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=184 +1773162784560|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=186 +1773162784562|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=203 +1773162784567|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=192 +1773162784570|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=187 +1773162784572|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=199 +1773162784576|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=200 +1773162784581|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=195 +1773162784584|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=125 +1773162784586|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=185 +1773162784590|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=70 +1773162784593|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=198 +1773162784595|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=202 +1773162784598|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=40 +1773162784600|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=204 +1773162784602|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=209 +1773162784605|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=218 +1773162784607|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=219 +1773162784610|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=60 +1773162784612|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=208 +1773162784615|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=207 +1773162784618|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=210 +1773162784622|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=213 +1773162784627|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=214 +1773162784629|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=206 +1773162784632|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=56 +1773162784635|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=215 +1773162784638|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=216 +1773162784642|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=211 +1773162784644|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=205 +1773162784647|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=217 +1773162784650|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=220 +1773162784653|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=221 +1773162784659|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=98 +1773162784663|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=223 +1773162784666|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=153 +1773162784669|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1773162785641|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3500, 500 +1773162785648|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1773162785651|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=225 +1773162785654|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=27 +1773162785656|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=233 +1773162785659|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=232 +1773162785661|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=226 +1773162785664|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=228 +1773162785667|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=182 +1773162785670|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=231 +1773162785673|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=68 +1773162785676|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1773162785682|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1773162785686|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=225 +1773162785688|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=27 +1773162785691|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=233 +1773162785693|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=232 +1773162785695|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=226 +1773162785699|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=228 +1773162785700|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=182 +1773162785703|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=231 +1773162785707|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=68 +1773162785709|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1773162786457|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 4000, 500 +1773162786460|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1773162786463|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=230 +1773162786467|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=239 +1773162786470|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=177 +1773162786472|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1773162786476|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=230 +1773162786479|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=239 +1773162786481|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=177 +1773162786573|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786668|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786701|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786723|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786731|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786761|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786772|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786788|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786794|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786811|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786817|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786830|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786839|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786853|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786858|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786873|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786882|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786897|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786901|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162786917|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162786927|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787245|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787250|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787260|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787264|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787276|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787282|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787294|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787303|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787316|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787319|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787333|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787343|4|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787359|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787365|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787381|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787386|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787398|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787408|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787420|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787425|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787434|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787441|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787456|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787461|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787471|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787476|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787486|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787490|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787499|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787503|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787513|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787518|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787532|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787535|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787545|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787550|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787559|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787563|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787574|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787580|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787592|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787596|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787603|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787609|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787618|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787624|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787633|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787639|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787649|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787654|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787664|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787668|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787675|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787679|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787685|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787689|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787696|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787700|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787710|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787713|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787722|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787726|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787733|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787736|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787748|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787751|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787758|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787762|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787769|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787773|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787781|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787787|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787795|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787800|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787811|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787815|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787829|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787833|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787845|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787849|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787865|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787870|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787883|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787888|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787905|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787910|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787919|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787925|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787934|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787939|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787948|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787954|4|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787970|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787975|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787984|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162787987|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162787999|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788003|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788013|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788017|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788026|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788031|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788046|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788049|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788065|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788071|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788082|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788086|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788099|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788104|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788116|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788119|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788130|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788134|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788145|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788151|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788162|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788166|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788180|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788187|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788200|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788205|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788215|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788222|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788235|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788239|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788251|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788255|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788271|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788275|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788286|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788292|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788305|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788312|4|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788325|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788330|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788343|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788350|4|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788369|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788377|4|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788393|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788397|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788407|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788411|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788432|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788437|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788451|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788455|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788469|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788479|5|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788491|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788498|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788511|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788516|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788528|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788533|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788555|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788560|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788576|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788581|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788593|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788599|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788613|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788618|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788629|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788634|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788653|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788659|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788669|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788677|4|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788691|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788695|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788708|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788712|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788726|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788728|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788739|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788745|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788760|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788765|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788775|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788778|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788788|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788792|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788800|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788803|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788811|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788813|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788822|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788828|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788836|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788840|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788848|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788850|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788858|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788861|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788869|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788871|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773162788885|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773162788945|49|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227752496|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227753855|23|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1773227753881|14|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1773227753950|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=2 +1773227753993|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=159 +1773227753999|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=7 +1773227754006|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=5 +1773227754010|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=62 +1773227754015|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=11 +1773227754020|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=6 +1773227754023|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=3 +1773227754029|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=4 +1773227754034|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=14 +1773227754039|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=8 +1773227754043|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=9 +1773227754049|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=10 +1773227754055|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=1 +1773227754060|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=15 +1773227754064|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=17 +1773227754069|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=25 +1773227754072|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=24 +1773227754076|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=22 +1773227754081|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=32 +1773227754085|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=19 +1773227754089|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=28 +1773227754092|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=20 +1773227754095|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=29 +1773227754098|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=34 +1773227754102|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=30 +1773227754107|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=26 +1773227754110|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=36 +1773227754115|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=31 +1773227754124|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1773227754160|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=2 +1773227754168|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=159 +1773227754173|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=7 +1773227754176|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=5 +1773227754180|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=62 +1773227754184|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=11 +1773227754188|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=6 +1773227754192|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=3 +1773227754196|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=4 +1773227754199|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=14 +1773227754204|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=8 +1773227754207|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=9 +1773227754212|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=10 +1773227754216|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=1 +1773227754220|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=15 +1773227754226|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=17 +1773227754231|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=25 +1773227754236|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=24 +1773227754240|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=22 +1773227754244|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=32 +1773227754247|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=19 +1773227754252|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=28 +1773227754256|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=20 +1773227754260|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=29 +1773227754263|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=34 +1773227754268|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=30 +1773227754272|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=26 +1773227754275|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=36 +1773227754278|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=31 +1773227754283|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1773227755373|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500, 500 +1773227755386|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1773227755399|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=229 +1773227755403|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=33 +1773227755406|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=23 +1773227755410|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=21 +1773227755415|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=18 +1773227755420|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=54 +1773227755424|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=41 +1773227755428|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=47 +1773227755434|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=51 +1773227755439|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=58 +1773227755444|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=59 +1773227755447|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=61 +1773227755451|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=63 +1773227755455|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=64 +1773227755459|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=193 +1773227755463|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=65 +1773227755466|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=67 +1773227755470|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=237 +1773227755474|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=69 +1773227755478|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=72 +1773227755481|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=71 +1773227755484|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=169 +1773227755488|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=74 +1773227755491|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=76 +1773227755494|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=83 +1773227755497|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=78 +1773227755500|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=79 +1773227755503|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=80 +1773227755507|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=87 +1773227755511|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=88 +1773227755514|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=82 +1773227755517|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=91 +1773227755522|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=89 +1773227755526|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=81 +1773227755530|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=84 +1773227755535|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=92 +1773227755539|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=97 +1773227755543|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=95 +1773227755547|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=93 +1773227755551|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=190 +1773227755554|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1773227755559|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1773227755562|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=229 +1773227755565|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=33 +1773227755569|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=23 +1773227755573|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=21 +1773227755577|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=18 +1773227755580|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=54 +1773227755583|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=41 +1773227755587|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=47 +1773227755590|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=51 +1773227755593|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=58 +1773227755596|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=59 +1773227755599|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=61 +1773227755603|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=63 +1773227755607|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=64 +1773227755609|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=193 +1773227755613|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=65 +1773227755616|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=67 +1773227755621|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=237 +1773227755625|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=69 +1773227755628|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=72 +1773227755632|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=71 +1773227755636|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=169 +1773227755641|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=74 +1773227755643|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=76 +1773227755647|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=83 +1773227755651|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=78 +1773227755654|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=79 +1773227755658|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=80 +1773227755661|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=87 +1773227755663|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=88 +1773227755667|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=82 +1773227755670|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=91 +1773227755674|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=89 +1773227755677|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=81 +1773227755681|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=84 +1773227755684|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=92 +1773227755688|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=97 +1773227755692|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=95 +1773227755694|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=93 +1773227755698|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=190 +1773227755701|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1773227756491|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1000, 500 +1773227756497|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1773227756500|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=100 +1773227756504|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=104 +1773227756508|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=103 +1773227756511|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=102 +1773227756513|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=105 +1773227756517|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=106 +1773227756520|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1773227756524|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1773227756527|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=100 +1773227756531|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=104 +1773227756535|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=103 +1773227756539|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=102 +1773227756542|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=105 +1773227756545|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=106 +1773227756549|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1773227757367|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1500, 500 +1773227757374|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1773227757377|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=212 +1773227757380|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=16 +1773227757383|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=108 +1773227757387|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=110 +1773227757392|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=235 +1773227757395|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=109 +1773227757398|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=53 +1773227757401|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=236 +1773227757404|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=114 +1773227757407|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=44 +1773227757409|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=38 +1773227757413|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=50 +1773227757417|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=111 +1773227757420|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=112 +1773227757423|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=37 +1773227757426|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1773227757429|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1773227757432|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=212 +1773227757435|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=16 +1773227757438|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=108 +1773227757441|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=110 +1773227757444|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=235 +1773227757448|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=109 +1773227757450|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=53 +1773227757454|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=236 +1773227757457|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=114 +1773227757460|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=44 +1773227757462|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=38 +1773227757465|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=50 +1773227757469|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=111 +1773227757472|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=112 +1773227757476|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=37 +1773227757480|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1773227758242|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2000, 500 +1773227758247|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1773227758251|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=113 +1773227758254|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=115 +1773227758258|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=48 +1773227758260|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=49 +1773227758263|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=46 +1773227758266|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=45 +1773227758270|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=39 +1773227758273|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=174 +1773227758275|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=117 +1773227758278|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=86 +1773227758280|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=96 +1773227758283|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=52 +1773227758286|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=118 +1773227758289|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=55 +1773227758292|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=119 +1773227758295|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=129 +1773227758298|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=126 +1773227758302|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=120 +1773227758306|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=121 +1773227758309|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=122 +1773227758312|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=124 +1773227758315|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=127 +1773227758319|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=128 +1773227758322|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=66 +1773227758326|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=130 +1773227758329|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=134 +1773227758332|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=138 +1773227758335|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=149 +1773227758338|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=135 +1773227758342|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=150 +1773227758350|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=139 +1773227758354|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=140 +1773227758358|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1773227758361|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1773227758367|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=113 +1773227758371|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=115 +1773227758375|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=48 +1773227758379|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=49 +1773227758383|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=46 +1773227758388|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=45 +1773227758392|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=39 +1773227758395|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=174 +1773227758398|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=117 +1773227758402|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=86 +1773227758406|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=96 +1773227758409|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=52 +1773227758413|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=118 +1773227758417|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=55 +1773227758422|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=119 +1773227758426|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=129 +1773227758430|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=126 +1773227758435|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=120 +1773227758440|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=121 +1773227758444|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=122 +1773227758448|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=124 +1773227758452|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=127 +1773227758455|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=128 +1773227758459|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=66 +1773227758462|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=130 +1773227758465|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=134 +1773227758469|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=138 +1773227758473|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=149 +1773227758475|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=135 +1773227758478|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=150 +1773227758481|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=139 +1773227758484|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=140 +1773227758488|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1773227759242|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2500, 500 +1773227759248|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1773227759251|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=137 +1773227759254|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=147 +1773227759258|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=145 +1773227759261|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=148 +1773227759264|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=151 +1773227759267|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=136 +1773227759271|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=75 +1773227759274|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=133 +1773227759276|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=132 +1773227759279|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=142 +1773227759282|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=146 +1773227759284|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=144 +1773227759289|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=141 +1773227759292|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=152 +1773227759295|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=162 +1773227759298|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=161 +1773227759300|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=157 +1773227759304|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=154 +1773227759307|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=156 +1773227759310|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=158 +1773227759313|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=155 +1773227759315|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=160 +1773227759319|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=43 +1773227759322|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=164 +1773227759326|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=165 +1773227759329|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=170 +1773227759332|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=166 +1773227759335|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=171 +1773227759338|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=176 +1773227759340|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=168 +1773227759343|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=167 +1773227759345|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=143 +1773227759348|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=175 +1773227759351|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=173 +1773227759354|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=172 +1773227759357|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=85 +1773227759360|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=179 +1773227759363|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1773227759366|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1773227759369|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=137 +1773227759371|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=147 +1773227759374|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=145 +1773227759377|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=148 +1773227759380|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=151 +1773227759383|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=136 +1773227759387|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=75 +1773227759390|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=133 +1773227759393|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=132 +1773227759396|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=142 +1773227759398|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=146 +1773227759401|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=144 +1773227759404|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=141 +1773227759407|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=152 +1773227759410|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=162 +1773227759412|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=161 +1773227759415|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=157 +1773227759418|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=154 +1773227759420|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=156 +1773227759424|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=158 +1773227759426|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=155 +1773227759430|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=160 +1773227759434|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=43 +1773227759438|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=164 +1773227759440|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=165 +1773227759445|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=170 +1773227759448|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=166 +1773227759451|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=171 +1773227759454|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=176 +1773227759457|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=168 +1773227759460|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=167 +1773227759463|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=143 +1773227759466|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=175 +1773227759469|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=173 +1773227759472|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=172 +1773227759475|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=85 +1773227759477|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=179 +1773227759480|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1773227760165|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3000, 500 +1773227760171|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1773227760175|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=90 +1773227760179|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=178 +1773227760183|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=180 +1773227760187|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=181 +1773227760191|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=183 +1773227760195|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=201 +1773227760199|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=189 +1773227760204|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=116 +1773227760208|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=123 +1773227760212|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=227 +1773227760215|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=196 +1773227760219|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=57 +1773227760224|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=191 +1773227760227|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=238 +1773227760231|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=234 +1773227760234|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=194 +1773227760237|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=197 +1773227760241|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=184 +1773227760244|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=186 +1773227760247|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=203 +1773227760249|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=192 +1773227760251|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=187 +1773227760254|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=199 +1773227760257|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=200 +1773227760258|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=195 +1773227760261|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=125 +1773227760264|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=185 +1773227760267|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=70 +1773227760270|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=198 +1773227760273|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=202 +1773227760276|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=40 +1773227760278|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=204 +1773227760281|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=209 +1773227760283|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=218 +1773227760287|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=219 +1773227760290|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=60 +1773227760293|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=208 +1773227760296|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=207 +1773227760298|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=210 +1773227760301|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=213 +1773227760304|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=214 +1773227760308|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=206 +1773227760310|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=56 +1773227760313|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=215 +1773227760316|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=216 +1773227760318|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=211 +1773227760322|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=205 +1773227760324|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=217 +1773227760326|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=220 +1773227760329|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=221 +1773227760331|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=98 +1773227760333|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=223 +1773227760335|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=153 +1773227760338|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1773227760341|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1773227760343|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=90 +1773227760346|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=178 +1773227760348|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=180 +1773227760351|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=181 +1773227760353|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=183 +1773227760355|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=201 +1773227760358|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=189 +1773227760361|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=116 +1773227760363|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=123 +1773227760366|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=227 +1773227760369|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=196 +1773227760372|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=57 +1773227760374|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=191 +1773227760377|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=238 +1773227760380|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=234 +1773227760382|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=194 +1773227760385|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=197 +1773227760389|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=184 +1773227760392|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=186 +1773227760394|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=203 +1773227760398|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=192 +1773227760401|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=187 +1773227760404|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=199 +1773227760407|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=200 +1773227760410|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=195 +1773227760413|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=125 +1773227760416|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=185 +1773227760420|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=70 +1773227760422|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=198 +1773227760425|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=202 +1773227760427|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=40 +1773227760429|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=204 +1773227760432|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=209 +1773227760434|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=218 +1773227760436|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=219 +1773227760439|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=60 +1773227760441|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=208 +1773227760444|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=207 +1773227760446|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=210 +1773227760448|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=213 +1773227760450|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=214 +1773227760453|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=206 +1773227760456|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=56 +1773227760459|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=215 +1773227760461|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=216 +1773227760464|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=211 +1773227760466|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=205 +1773227760469|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=217 +1773227760472|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=220 +1773227760475|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=221 +1773227760478|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=98 +1773227760480|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=223 +1773227760482|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=153 +1773227760485|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1773227761109|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3500, 500 +1773227761113|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1773227761115|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=225 +1773227761119|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=27 +1773227761122|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=233 +1773227761124|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=232 +1773227761127|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=226 +1773227761129|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=228 +1773227761132|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=182 +1773227761134|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=231 +1773227761138|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=68 +1773227761140|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1773227761143|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1773227761146|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=225 +1773227761149|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=27 +1773227761152|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=233 +1773227761154|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=232 +1773227761157|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=226 +1773227761160|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=228 +1773227761162|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=182 +1773227761165|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=231 +1773227761169|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=68 +1773227761172|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1773227761937|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 4000, 500 +1773227761940|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1773227761943|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=230 +1773227761946|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=239 +1773227761949|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=177 +1773227761952|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1773227761956|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=230 +1773227761959|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=239 +1773227761962|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=177 +1773227762084|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762199|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762219|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762238|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762244|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762261|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762268|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762286|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762294|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762312|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762320|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762339|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762347|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762364|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762371|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762385|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762391|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762406|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762413|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762429|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762435|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762742|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762746|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762757|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762761|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762769|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762776|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762788|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762794|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762807|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762813|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762824|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762829|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762841|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762847|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762861|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762867|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762881|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762892|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762904|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762909|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762921|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762927|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762940|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762946|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762958|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762963|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762973|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762978|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227762990|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227762995|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763006|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763010|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763018|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763023|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763033|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763037|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763046|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763051|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763063|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763067|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763077|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763081|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763091|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763094|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763104|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763108|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763121|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763125|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763138|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763144|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763156|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763161|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763171|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763175|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763185|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763189|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763197|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763202|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763214|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763219|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763232|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763235|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763244|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763247|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763258|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763262|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763273|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763277|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763287|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763290|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763298|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763301|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763309|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763312|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763323|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763326|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763338|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763342|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763354|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763358|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763371|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763377|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763393|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763399|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763414|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763419|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763434|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763440|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763451|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763457|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763468|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763473|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763481|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763485|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763496|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763500|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763511|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763517|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763528|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763532|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763540|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763544|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763554|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763559|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763569|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763573|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763584|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763590|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763603|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763608|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763617|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763622|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763631|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763635|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763645|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763649|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763660|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763663|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763673|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763677|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763685|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763688|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763696|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763699|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763709|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763712|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763721|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763724|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763732|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763735|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763743|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763747|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763757|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763760|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763767|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763771|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763781|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763784|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763793|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763797|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763805|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763808|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763818|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763822|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763831|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763834|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763842|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763844|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763852|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763855|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763863|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763866|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763873|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763876|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763883|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763885|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763893|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763897|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763905|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763907|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763914|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763917|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763924|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763928|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763935|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763939|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763946|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763950|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763957|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763960|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763967|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763970|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763978|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763980|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763987|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227763990|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227763997|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764000|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764007|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764009|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764015|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764018|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764026|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764029|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764036|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764039|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764046|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764049|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764057|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764059|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764066|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764069|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764077|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764079|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764086|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764089|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764098|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764102|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227764112|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227764115|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227895969|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227897672|11|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1773227897695|13|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1773227897796|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=2 +1773227897834|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=159 +1773227897843|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=7 +1773227897849|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=5 +1773227897854|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=62 +1773227897860|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=11 +1773227897864|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=6 +1773227897868|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=3 +1773227897873|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=4 +1773227897878|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=14 +1773227897882|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=8 +1773227897886|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=9 +1773227897891|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=10 +1773227897896|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=1 +1773227897899|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=15 +1773227897904|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=17 +1773227897910|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=25 +1773227897913|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=24 +1773227897918|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=22 +1773227897924|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=32 +1773227897928|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=19 +1773227897933|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=28 +1773227897938|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=20 +1773227897942|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=29 +1773227897946|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=34 +1773227897950|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=30 +1773227897955|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=26 +1773227897960|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=36 +1773227897964|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=31 +1773227897974|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1773227897986|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=2 +1773227897995|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=159 +1773227898000|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=7 +1773227898004|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=5 +1773227898008|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=62 +1773227898012|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=11 +1773227898016|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=6 +1773227898020|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=3 +1773227898025|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=4 +1773227898028|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=14 +1773227898032|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=8 +1773227898035|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=9 +1773227898040|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=10 +1773227898045|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=1 +1773227898049|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=15 +1773227898053|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=17 +1773227898057|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=25 +1773227898060|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=24 +1773227898064|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=22 +1773227898069|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=32 +1773227898072|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=19 +1773227898076|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=28 +1773227898080|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=20 +1773227898084|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=29 +1773227898087|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=34 +1773227898090|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=30 +1773227898094|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=26 +1773227898097|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=36 +1773227898101|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=31 +1773227898106|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1773227899019|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500, 500 +1773227899031|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1773227899043|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=229 +1773227899047|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=33 +1773227899050|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=23 +1773227899053|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=21 +1773227899057|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=18 +1773227899061|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=54 +1773227899064|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=41 +1773227899068|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=47 +1773227899072|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=51 +1773227899075|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=58 +1773227899078|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=59 +1773227899082|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=61 +1773227899085|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=63 +1773227899088|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=64 +1773227899093|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=193 +1773227899096|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=65 +1773227899100|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=67 +1773227899104|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=237 +1773227899108|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=69 +1773227899111|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=72 +1773227899114|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=71 +1773227899117|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=169 +1773227899121|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=74 +1773227899124|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=76 +1773227899128|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=83 +1773227899131|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=78 +1773227899134|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=79 +1773227899137|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=80 +1773227899141|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=87 +1773227899144|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=88 +1773227899147|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=82 +1773227899150|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=91 +1773227899154|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=89 +1773227899159|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=81 +1773227899162|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=84 +1773227899165|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=92 +1773227899168|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=97 +1773227899172|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=95 +1773227899176|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=93 +1773227899179|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=190 +1773227899182|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1773227899186|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1773227899191|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=229 +1773227899194|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=33 +1773227899197|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=23 +1773227899200|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=21 +1773227899205|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=18 +1773227899208|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=54 +1773227899211|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=41 +1773227899214|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=47 +1773227899217|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=51 +1773227899220|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=58 +1773227899222|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=59 +1773227899225|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=61 +1773227899228|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=63 +1773227899231|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=64 +1773227899235|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=193 +1773227899237|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=65 +1773227899241|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=67 +1773227899244|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=237 +1773227899248|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=69 +1773227899251|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=72 +1773227899254|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=71 +1773227899257|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=169 +1773227899261|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=74 +1773227899265|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=76 +1773227899270|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=83 +1773227899274|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=78 +1773227899278|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=79 +1773227899281|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=80 +1773227899285|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=87 +1773227899289|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=88 +1773227899292|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=82 +1773227899296|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=91 +1773227899299|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=89 +1773227899302|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=81 +1773227899306|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=84 +1773227899310|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=92 +1773227899313|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=97 +1773227899316|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=95 +1773227899319|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=93 +1773227899321|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=190 +1773227899324|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1773227899954|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1000, 500 +1773227899959|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1773227899963|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=100 +1773227899966|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=104 +1773227899969|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=103 +1773227899981|10|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=102 +1773227899990|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=105 +1773227899995|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=106 +1773227899999|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1773227900003|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1773227900007|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=100 +1773227900012|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=104 +1773227900015|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=103 +1773227900019|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=102 +1773227900021|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=105 +1773227900024|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=106 +1773227900027|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1773227900650|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1500, 500 +1773227900656|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1773227900659|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=212 +1773227900662|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=16 +1773227900664|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=108 +1773227900667|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=110 +1773227900671|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=235 +1773227900675|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=109 +1773227900678|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=53 +1773227900681|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=236 +1773227900683|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=114 +1773227900685|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=44 +1773227900687|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=38 +1773227900691|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=50 +1773227900694|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=111 +1773227900696|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=112 +1773227900700|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=37 +1773227900702|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1773227900705|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1773227900708|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=212 +1773227900711|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=16 +1773227900713|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=108 +1773227900715|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=110 +1773227900719|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=235 +1773227900722|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=109 +1773227900724|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=53 +1773227900727|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=236 +1773227900730|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=114 +1773227900732|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=44 +1773227900735|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=38 +1773227900738|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=50 +1773227900741|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=111 +1773227900744|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=112 +1773227900747|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=37 +1773227900751|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1773227901467|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2000, 500 +1773227901471|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1773227901475|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=113 +1773227901478|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=115 +1773227901481|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=48 +1773227901483|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=49 +1773227901487|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=46 +1773227901491|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=45 +1773227901494|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=39 +1773227901497|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=174 +1773227901500|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=117 +1773227901503|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=86 +1773227901507|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=96 +1773227901509|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=52 +1773227901511|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=118 +1773227901514|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=55 +1773227901518|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=119 +1773227901521|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=129 +1773227901523|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=126 +1773227901526|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=120 +1773227901529|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=121 +1773227901532|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=122 +1773227901535|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=124 +1773227901537|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=127 +1773227901541|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=128 +1773227901543|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=66 +1773227901546|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=130 +1773227901549|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=134 +1773227901553|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=138 +1773227901556|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=149 +1773227901560|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=135 +1773227901563|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=150 +1773227901570|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=139 +1773227901574|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=140 +1773227901577|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1773227901581|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1773227901584|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=113 +1773227901588|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=115 +1773227901591|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=48 +1773227901595|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=49 +1773227901598|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=46 +1773227901602|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=45 +1773227901607|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=39 +1773227901611|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=174 +1773227901615|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=117 +1773227901618|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=86 +1773227901623|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=96 +1773227901627|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=52 +1773227901630|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=118 +1773227901633|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=55 +1773227901636|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=119 +1773227901639|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=129 +1773227901643|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=126 +1773227901646|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=120 +1773227901650|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=121 +1773227901655|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=122 +1773227901660|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=124 +1773227901662|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=127 +1773227901666|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=128 +1773227901669|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=66 +1773227901672|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=130 +1773227901676|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=134 +1773227901680|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=138 +1773227901684|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=149 +1773227901688|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=135 +1773227901692|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=150 +1773227901696|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=139 +1773227901698|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=140 +1773227901701|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1773227902353|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2500, 500 +1773227902358|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1773227902360|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=137 +1773227902364|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=147 +1773227902366|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=145 +1773227902369|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=148 +1773227902372|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=151 +1773227902376|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=136 +1773227902379|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=75 +1773227902381|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=133 +1773227902385|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=132 +1773227902387|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=142 +1773227902391|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=146 +1773227902393|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=144 +1773227902396|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=141 +1773227902399|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=152 +1773227902402|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=162 +1773227902406|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=161 +1773227902409|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=157 +1773227902413|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=154 +1773227902417|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=156 +1773227902422|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=158 +1773227902427|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=155 +1773227902431|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=160 +1773227902435|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=43 +1773227902438|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=164 +1773227902443|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=165 +1773227902446|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=170 +1773227902449|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=166 +1773227902451|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=171 +1773227902454|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=176 +1773227902458|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=168 +1773227902462|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=167 +1773227902466|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=143 +1773227902469|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=175 +1773227902473|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=173 +1773227902475|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=172 +1773227902478|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=85 +1773227902480|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=179 +1773227902483|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1773227902486|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1773227902488|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=137 +1773227902492|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=147 +1773227902495|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=145 +1773227902498|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=148 +1773227902501|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=151 +1773227902503|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=136 +1773227902507|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=75 +1773227902510|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=133 +1773227902513|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=132 +1773227902517|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=142 +1773227902521|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=146 +1773227902526|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=144 +1773227902529|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=141 +1773227902532|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=152 +1773227902535|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=162 +1773227902538|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=161 +1773227902542|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=157 +1773227902546|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=154 +1773227902549|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=156 +1773227902554|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=158 +1773227902557|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=155 +1773227902561|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=160 +1773227902565|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=43 +1773227902567|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=164 +1773227902570|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=165 +1773227902574|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=170 +1773227902577|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=166 +1773227902579|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=171 +1773227902582|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=176 +1773227902585|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=168 +1773227902588|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=167 +1773227902591|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=143 +1773227902594|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=175 +1773227902596|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=173 +1773227902599|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=172 +1773227902602|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=85 +1773227902604|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=179 +1773227902607|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1773227903281|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3000, 500 +1773227903286|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1773227903291|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=90 +1773227903294|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=178 +1773227903297|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=180 +1773227903301|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=181 +1773227903305|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=183 +1773227903308|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=201 +1773227903311|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=189 +1773227903314|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=116 +1773227903317|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=123 +1773227903320|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=227 +1773227903323|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=196 +1773227903326|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=57 +1773227903329|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=191 +1773227903332|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=238 +1773227903335|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=234 +1773227903338|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=194 +1773227903343|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=197 +1773227903346|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=184 +1773227903350|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=186 +1773227903353|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=203 +1773227903356|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=192 +1773227903360|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=187 +1773227903363|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=199 +1773227903366|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=200 +1773227903369|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=195 +1773227903371|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=125 +1773227903375|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=185 +1773227903379|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=70 +1773227903382|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=198 +1773227903385|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=202 +1773227903387|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=40 +1773227903391|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=204 +1773227903395|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=209 +1773227903397|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=218 +1773227903400|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=219 +1773227903404|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=60 +1773227903408|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=208 +1773227903411|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=207 +1773227903414|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=210 +1773227903416|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=213 +1773227903419|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=214 +1773227903422|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=206 +1773227903426|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=56 +1773227903429|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=215 +1773227903433|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=216 +1773227903436|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=211 +1773227903439|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=205 +1773227903441|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=217 +1773227903444|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=220 +1773227903446|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=221 +1773227903449|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=98 +1773227903452|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=223 +1773227903455|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=153 +1773227903457|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1773227903460|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1773227903463|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=90 +1773227903466|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=178 +1773227903468|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=180 +1773227903471|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=181 +1773227903475|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=183 +1773227903478|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=201 +1773227903482|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=189 +1773227903485|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=116 +1773227903488|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=123 +1773227903491|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=227 +1773227903494|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=196 +1773227903496|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=57 +1773227903498|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=191 +1773227903501|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=238 +1773227903503|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=234 +1773227903506|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=194 +1773227903510|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=197 +1773227903512|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=184 +1773227903514|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=186 +1773227903517|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=203 +1773227903520|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=192 +1773227903522|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=187 +1773227903525|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=199 +1773227903528|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=200 +1773227903530|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=195 +1773227903532|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=125 +1773227903535|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=185 +1773227903537|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=70 +1773227903540|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=198 +1773227903543|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=202 +1773227903545|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=40 +1773227903547|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=204 +1773227903548|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=209 +1773227903551|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=218 +1773227903553|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=219 +1773227903556|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=60 +1773227903559|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=208 +1773227903561|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=207 +1773227903564|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=210 +1773227903566|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=213 +1773227903568|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=214 +1773227903571|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=206 +1773227903574|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=56 +1773227903577|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=215 +1773227903580|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=216 +1773227903582|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=211 +1773227903585|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=205 +1773227903587|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=217 +1773227903590|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=220 +1773227903594|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=221 +1773227903596|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=98 +1773227903598|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=223 +1773227903601|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=153 +1773227903605|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1773227904177|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3500, 500 +1773227904181|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1773227904184|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=225 +1773227904187|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=27 +1773227904190|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=233 +1773227904194|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=232 +1773227904196|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=226 +1773227904199|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=228 +1773227904201|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=182 +1773227904203|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=231 +1773227904206|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=68 +1773227904209|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1773227904212|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1773227904215|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=225 +1773227904218|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=27 +1773227904220|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=233 +1773227904223|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=232 +1773227904227|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=226 +1773227904229|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=228 +1773227904231|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=182 +1773227904234|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=231 +1773227904236|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=68 +1773227904238|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1773227904771|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 4000, 500 +1773227904773|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1773227904776|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=230 +1773227904778|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=239 +1773227904780|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=177 +1773227904781|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1773227904785|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=230 +1773227904787|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=239 +1773227904790|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=177 +1773227904871|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227904995|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905033|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905053|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905058|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905072|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905080|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905094|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905100|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905113|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905118|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905131|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905136|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905151|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905158|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905170|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905174|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905185|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905190|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905202|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905206|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905735|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905739|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905747|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905751|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905759|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905763|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905770|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905774|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905783|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905787|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905797|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905802|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905810|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905812|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905820|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905824|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905833|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905839|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905847|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905849|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905857|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905861|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905870|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905874|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905884|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905888|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905897|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905901|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905913|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905916|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905926|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905929|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905938|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905942|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905950|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905953|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905963|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905968|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905977|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905980|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227905989|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227905994|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906002|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906005|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906013|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906016|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906024|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906029|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906036|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906040|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906047|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906051|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906057|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906060|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906067|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906070|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906078|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906082|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906092|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906096|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906105|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906110|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906117|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906119|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906127|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906130|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906137|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906141|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906149|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906151|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906159|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906162|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906169|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906172|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906181|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906185|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906193|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906196|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906205|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906209|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906218|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906221|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906233|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906237|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906247|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906250|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906261|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906265|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906275|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906280|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906288|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906292|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906300|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906302|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906311|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906314|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906321|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906325|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906332|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906335|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906344|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906347|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906354|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906357|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906367|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906371|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906387|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906394|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906407|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906411|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906423|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906428|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906436|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906441|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906456|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906460|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906472|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906478|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906491|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906495|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906506|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906510|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906521|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906525|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906537|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906543|4|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906554|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906561|4|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906572|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906578|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906593|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906598|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906613|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906619|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906638|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906643|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906661|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906666|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906682|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906689|3|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906703|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906708|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906720|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906724|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906736|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906740|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906750|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906753|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906765|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906768|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906780|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906783|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906791|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906795|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906803|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906806|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906817|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906821|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906831|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906834|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906843|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906846|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906854|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906858|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906867|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906871|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906878|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906881|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906889|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906893|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906901|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906904|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906910|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906914|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906922|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906925|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906933|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906936|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906943|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906946|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906951|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906954|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906961|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906963|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906969|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906971|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906978|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906980|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906987|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227906990|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227906997|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907000|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907007|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907009|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907015|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907018|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907027|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907031|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907048|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907053|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907076|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907089|11|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907101|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907104|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907113|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907116|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907128|7|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907132|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907141|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907144|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907153|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907157|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907166|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907169|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907177|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907179|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907187|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907190|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907199|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907202|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907209|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907214|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907222|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907224|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907233|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907236|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907245|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907248|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907256|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907258|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907266|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907269|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907278|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907281|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907289|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907292|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907300|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907303|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907311|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907313|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907323|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907325|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907332|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907334|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907339|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907342|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907349|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907351|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907356|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907358|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907365|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907367|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907373|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907376|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907382|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907385|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907391|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907394|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907401|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907403|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907411|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907413|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907420|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907422|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907430|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907436|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907443|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907446|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907454|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907456|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907465|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907467|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907474|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907477|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907483|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907485|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907491|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907494|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907499|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907502|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907508|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907510|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907515|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907518|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907525|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907527|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907534|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907536|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907545|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907549|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907560|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907562|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907570|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907572|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907580|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907583|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907590|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907593|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907599|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907601|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907606|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907610|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907617|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907619|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907626|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907628|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907633|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907635|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907641|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907644|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907650|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907652|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907657|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907660|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907667|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907670|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907678|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907681|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907686|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907688|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907695|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907697|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907703|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907706|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907712|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907714|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907722|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907724|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907730|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907732|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907739|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907741|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907749|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907752|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907761|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907763|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907772|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907775|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907783|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907785|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907792|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907794|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907801|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907803|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907809|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907812|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907819|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907820|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907827|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907829|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907835|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907837|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907843|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907846|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907852|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907854|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907861|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907863|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907869|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907871|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907877|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907880|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907885|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907887|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907896|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907898|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907906|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907908|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907914|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907916|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907923|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907925|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907932|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907934|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907943|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907946|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907952|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907954|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907960|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907962|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907968|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907970|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907976|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907978|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907985|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907987|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227907995|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227907997|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227908003|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227908006|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227908012|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227908014|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227908019|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227908021|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227908028|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227908031|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227908036|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227908039|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227908045|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227908047|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227973266|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227974421|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select count(city0_.id) as col_0_0_ from city city0_|select count(city0_.id) as col_0_0_ from city city0_ +1773227974437|9|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500 +1773227974513|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=2 +1773227974538|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=159 +1773227974541|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=7 +1773227974547|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=5 +1773227974553|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=62 +1773227974560|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=11 +1773227974564|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=6 +1773227974568|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=3 +1773227974572|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=4 +1773227974575|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=14 +1773227974580|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=8 +1773227974585|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=9 +1773227974590|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=10 +1773227974596|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=1 +1773227974599|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=15 +1773227974603|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=17 +1773227974606|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=25 +1773227974610|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=24 +1773227974613|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=22 +1773227974617|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=32 +1773227974620|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=19 +1773227974623|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=28 +1773227974626|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=20 +1773227974629|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=29 +1773227974631|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=34 +1773227974635|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=30 +1773227974637|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=26 +1773227974642|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=36 +1773227974644|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=31 +1773227974653|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1773227974663|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=2 +1773227974669|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=159 +1773227974673|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=7 +1773227974676|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=5 +1773227974679|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=62 +1773227974682|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=11 +1773227974687|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=6 +1773227974689|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=3 +1773227974693|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=4 +1773227974697|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=14 +1773227974700|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=8 +1773227974703|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=9 +1773227974707|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=10 +1773227974710|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=1 +1773227974713|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=15 +1773227974716|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=17 +1773227974720|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=25 +1773227974723|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=24 +1773227974726|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=22 +1773227974729|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=32 +1773227974731|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=19 +1773227974735|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=28 +1773227974738|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=20 +1773227974740|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=29 +1773227974742|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=34 +1773227974745|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=30 +1773227974748|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=26 +1773227974752|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=36 +1773227974755|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=31 +1773227974760|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1773227975642|8|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 500, 500 +1773227975705|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=77 +1773227975719|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=229 +1773227975722|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=33 +1773227975726|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=23 +1773227975730|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=21 +1773227975733|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=18 +1773227975737|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=54 +1773227975740|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=41 +1773227975743|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=47 +1773227975747|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=51 +1773227975750|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=58 +1773227975753|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=59 +1773227975755|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=61 +1773227975759|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=63 +1773227975762|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=64 +1773227975766|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=193 +1773227975770|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=65 +1773227975773|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=67 +1773227975777|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=237 +1773227975781|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=69 +1773227975785|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=72 +1773227975788|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=71 +1773227975792|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=169 +1773227975795|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=74 +1773227975798|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=76 +1773227975802|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=83 +1773227975805|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=78 +1773227975809|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=79 +1773227975813|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=80 +1773227975817|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=87 +1773227975822|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=88 +1773227975825|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=82 +1773227975829|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=91 +1773227975833|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=89 +1773227975837|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=81 +1773227975841|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=84 +1773227975846|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=92 +1773227975850|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=97 +1773227975856|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=95 +1773227975860|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=93 +1773227975863|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=190 +1773227975866|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1773227975870|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=77 +1773227975873|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=229 +1773227975876|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=33 +1773227975879|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=23 +1773227975881|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=21 +1773227975887|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=18 +1773227975890|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=54 +1773227975894|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=41 +1773227975897|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=47 +1773227975900|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=51 +1773227975903|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=58 +1773227975906|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=59 +1773227975909|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=61 +1773227975912|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=63 +1773227975914|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=64 +1773227975917|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=193 +1773227975921|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=65 +1773227975923|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=67 +1773227975927|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=237 +1773227975931|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=69 +1773227975934|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=72 +1773227975936|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=71 +1773227975940|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=169 +1773227975945|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=74 +1773227975949|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=76 +1773227975954|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=83 +1773227975959|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=78 +1773227975963|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=79 +1773227975967|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=80 +1773227975971|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=87 +1773227975976|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=88 +1773227975980|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=82 +1773227975985|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=91 +1773227975990|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=89 +1773227975995|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=81 +1773227975999|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=84 +1773227976003|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=92 +1773227976007|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=97 +1773227976011|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=95 +1773227976014|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=93 +1773227976018|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=190 +1773227976022|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1773227976698|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1000, 500 +1773227976703|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=99 +1773227976706|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=100 +1773227976709|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=104 +1773227976712|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=103 +1773227976715|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=102 +1773227976718|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=105 +1773227976720|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=106 +1773227976723|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1773227976725|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=99 +1773227976728|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=100 +1773227976732|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=104 +1773227976735|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=103 +1773227976738|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=102 +1773227976741|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=105 +1773227976743|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=106 +1773227976746|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1773227977630|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 1500, 500 +1773227977636|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=107 +1773227977639|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=212 +1773227977642|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=16 +1773227977645|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=108 +1773227977648|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=110 +1773227977651|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=235 +1773227977654|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=109 +1773227977657|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=53 +1773227977659|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=236 +1773227977663|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=114 +1773227977665|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=44 +1773227977668|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=38 +1773227977672|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=50 +1773227977675|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=111 +1773227977678|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=112 +1773227977681|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=37 +1773227977683|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1773227977687|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=107 +1773227977689|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=212 +1773227977691|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=16 +1773227977694|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=108 +1773227977697|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=110 +1773227977700|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=235 +1773227977703|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=109 +1773227977707|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=53 +1773227977709|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=236 +1773227977712|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=114 +1773227977716|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=44 +1773227977721|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=38 +1773227977725|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=50 +1773227977730|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=111 +1773227977733|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=112 +1773227977739|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=37 +1773227977742|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1773227978400|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2000, 500 +1773227978408|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=42 +1773227978412|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=113 +1773227978415|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=115 +1773227978418|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=48 +1773227978422|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=49 +1773227978424|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=46 +1773227978427|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=45 +1773227978430|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=39 +1773227978433|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=174 +1773227978437|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=117 +1773227978439|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=86 +1773227978442|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=96 +1773227978454|11|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=52 +1773227978460|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=118 +1773227978465|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=55 +1773227978470|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=119 +1773227978474|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=129 +1773227978478|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=126 +1773227978481|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=120 +1773227978485|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=121 +1773227978489|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=122 +1773227978493|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=124 +1773227978497|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=127 +1773227978501|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=128 +1773227978509|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=66 +1773227978515|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=130 +1773227978523|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=134 +1773227978527|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=138 +1773227978531|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=149 +1773227978536|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=135 +1773227978543|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=150 +1773227978553|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=139 +1773227978558|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=140 +1773227978561|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1773227978567|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=42 +1773227978573|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=113 +1773227978576|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=115 +1773227978580|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=48 +1773227978584|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=49 +1773227978588|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=46 +1773227978591|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=45 +1773227978594|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=39 +1773227978598|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=174 +1773227978601|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=117 +1773227978605|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=86 +1773227978608|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=96 +1773227978610|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=52 +1773227978614|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=118 +1773227978619|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=55 +1773227978623|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=119 +1773227978626|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=129 +1773227978630|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=126 +1773227978634|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=120 +1773227978640|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=121 +1773227978646|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=122 +1773227978649|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=124 +1773227978653|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=127 +1773227978657|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=128 +1773227978660|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=66 +1773227978664|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=130 +1773227978667|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=134 +1773227978673|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=138 +1773227978682|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=149 +1773227978689|5|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=135 +1773227978694|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=150 +1773227978697|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=139 +1773227978701|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=140 +1773227978705|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1773227979347|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 2500, 500 +1773227979352|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=131 +1773227979354|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=137 +1773227979357|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=147 +1773227979359|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=145 +1773227979362|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=148 +1773227979365|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=151 +1773227979367|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=136 +1773227979371|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=75 +1773227979374|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=133 +1773227979377|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=132 +1773227979380|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=142 +1773227979382|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=146 +1773227979385|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=144 +1773227979389|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=141 +1773227979391|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=152 +1773227979394|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=162 +1773227979397|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=161 +1773227979400|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=157 +1773227979403|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=154 +1773227979406|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=156 +1773227979409|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=158 +1773227979412|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=155 +1773227979414|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=160 +1773227979417|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=43 +1773227979420|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=164 +1773227979423|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=165 +1773227979426|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=170 +1773227979429|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=166 +1773227979432|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=171 +1773227979434|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=176 +1773227979437|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=168 +1773227979439|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=167 +1773227979442|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=143 +1773227979445|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=175 +1773227979448|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=173 +1773227979450|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=172 +1773227979453|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=85 +1773227979456|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=179 +1773227979458|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1773227979461|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=131 +1773227979464|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=137 +1773227979466|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=147 +1773227979469|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=145 +1773227979471|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=148 +1773227979474|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=151 +1773227979476|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=136 +1773227979479|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=75 +1773227979481|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=133 +1773227979483|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=132 +1773227979486|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=142 +1773227979488|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=146 +1773227979490|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=144 +1773227979493|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=141 +1773227979495|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=152 +1773227979497|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=162 +1773227979500|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=161 +1773227979503|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=157 +1773227979505|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=154 +1773227979507|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=156 +1773227979510|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=158 +1773227979511|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=155 +1773227979513|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=160 +1773227979516|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=43 +1773227979518|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=164 +1773227979521|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=165 +1773227979523|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=170 +1773227979526|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=166 +1773227979528|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=171 +1773227979530|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=176 +1773227979533|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=168 +1773227979536|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=167 +1773227979538|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=143 +1773227979540|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=175 +1773227979542|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=173 +1773227979544|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=172 +1773227979547|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=85 +1773227979548|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=179 +1773227979552|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1773227980158|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3000, 500 +1773227980161|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=73 +1773227980165|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=90 +1773227980168|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=178 +1773227980171|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=180 +1773227980173|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=181 +1773227980177|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=183 +1773227980180|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=201 +1773227980183|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=189 +1773227980185|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=116 +1773227980189|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=123 +1773227980192|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=227 +1773227980194|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=196 +1773227980196|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=57 +1773227980199|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=191 +1773227980202|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=238 +1773227980205|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=234 +1773227980208|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=194 +1773227980211|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=197 +1773227980213|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=184 +1773227980216|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=186 +1773227980218|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=203 +1773227980221|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=192 +1773227980225|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=187 +1773227980227|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=199 +1773227980229|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=200 +1773227980232|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=195 +1773227980234|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=125 +1773227980237|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=185 +1773227980239|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=70 +1773227980242|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=198 +1773227980244|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=202 +1773227980246|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=40 +1773227980248|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=204 +1773227980250|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=209 +1773227980252|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=218 +1773227980255|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=219 +1773227980258|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=60 +1773227980260|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=208 +1773227980262|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=207 +1773227980264|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=210 +1773227980266|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=213 +1773227980269|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=214 +1773227980271|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=206 +1773227980274|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=56 +1773227980276|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=215 +1773227980278|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=216 +1773227980281|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=211 +1773227980283|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=205 +1773227980285|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=217 +1773227980287|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=220 +1773227980289|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=221 +1773227980291|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=98 +1773227980293|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=223 +1773227980295|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=153 +1773227980297|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1773227980298|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=73 +1773227980300|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=90 +1773227980302|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=178 +1773227980305|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=180 +1773227980307|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=181 +1773227980309|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=183 +1773227980311|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=201 +1773227980313|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=189 +1773227980316|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=116 +1773227980319|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=123 +1773227980322|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=227 +1773227980325|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=196 +1773227980328|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=57 +1773227980330|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=191 +1773227980334|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=238 +1773227980337|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=234 +1773227980340|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=194 +1773227980342|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=197 +1773227980345|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=184 +1773227980347|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=186 +1773227980350|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=203 +1773227980352|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=192 +1773227980355|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=187 +1773227980357|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=199 +1773227980360|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=200 +1773227980361|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=195 +1773227980364|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=125 +1773227980366|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=185 +1773227980368|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=70 +1773227980371|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=198 +1773227980373|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=202 +1773227980375|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=40 +1773227980376|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=204 +1773227980379|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=209 +1773227980380|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=218 +1773227980382|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=219 +1773227980384|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=60 +1773227980387|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=208 +1773227980389|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=207 +1773227980392|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=210 +1773227980394|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=213 +1773227980395|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=214 +1773227980398|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=206 +1773227980401|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=56 +1773227980403|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=215 +1773227980406|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=216 +1773227980407|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=211 +1773227980410|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=205 +1773227980413|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=217 +1773227980415|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=220 +1773227980418|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=221 +1773227980421|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=98 +1773227980424|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=223 +1773227980426|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=153 +1773227980428|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1773227980880|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 3500, 500 +1773227980883|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=163 +1773227980886|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=225 +1773227980888|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=27 +1773227980890|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=233 +1773227980893|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=232 +1773227980895|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=226 +1773227980897|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=228 +1773227980899|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=182 +1773227980901|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=231 +1773227980904|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=68 +1773227980906|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1773227980908|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=163 +1773227980910|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=225 +1773227980913|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=27 +1773227980914|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=233 +1773227980916|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=232 +1773227980918|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=226 +1773227980921|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=228 +1773227980923|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=182 +1773227980925|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=231 +1773227980927|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=68 +1773227980929|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1773227981396|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit ?, ?|select city0_.id as id1_0_, city0_.country_id as country_5_0_, city0_.district as district2_0_, city0_.name as name3_0_, city0_.population as populati4_0_ from city city0_ limit 4000, 500 +1773227981398|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=224 +1773227981400|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=230 +1773227981402|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=239 +1773227981404|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=?|select country0_.id as id1_1_0_, country0_.code_2 as code_2_1_0_, country0_.capital as capital16_1_0_, country0_.code as code3_1_0_, country0_.continent as continen4_1_0_, country0_.gnp as gnp5_1_0_, country0_.gnpo_id as gnpo_id6_1_0_, country0_.government_form as governme7_1_0_, country0_.head_of_state as head_of_8_1_0_, country0_.indep_year as indep_ye9_1_0_, country0_.life_expectancy as life_ex10_1_0_, country0_.local_name as local_n11_1_0_, country0_.name as name12_1_0_, country0_.population as populat13_1_0_, country0_.region as region14_1_0_, country0_.surface_area as surface15_1_0_ from country country0_ where country0_.id=177 +1773227981407|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=224 +1773227981409|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=230 +1773227981411|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=239 +1773227981413|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=?|select languages0_.country_id as country_5_2_0_, languages0_.id as id1_2_0_, languages0_.id as id1_2_1_, languages0_.country_id as country_5_2_1_, languages0_.language as language2_2_1_, languages0_.is_official as is_offic3_2_1_, languages0_.percentage as percenta4_2_1_ from country_language languages0_ where languages0_.country_id=177 +1773227981479|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981553|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981580|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981593|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981599|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981611|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981618|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981630|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981635|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981647|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981652|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981664|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981669|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981680|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981684|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981695|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981699|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981708|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981712|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227981723|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227981727|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982065|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982068|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982076|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982079|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982086|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982091|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982099|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982104|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982114|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982117|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982127|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982130|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982139|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982143|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982154|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982159|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982169|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982179|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982187|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982191|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982199|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982204|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982213|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982217|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982227|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982231|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982239|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982242|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982249|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982252|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982258|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982262|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982268|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982271|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982278|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982281|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982289|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982293|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982301|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982305|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982312|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982315|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982324|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982328|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982337|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982340|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982347|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982350|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982357|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982361|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982370|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982375|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982382|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982386|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982393|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982397|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982405|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982408|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982415|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982418|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982425|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982428|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982435|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982438|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982445|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982448|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982455|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982459|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982467|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982471|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982478|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982482|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982488|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982491|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982499|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982502|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982510|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982514|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982522|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982526|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982534|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982537|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982546|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982550|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982560|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982564|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982574|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982578|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982587|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982592|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982601|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982605|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982614|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982617|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982628|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982630|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982641|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982645|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982655|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982658|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982668|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982671|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982680|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982684|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982695|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982698|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982708|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982712|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982723|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982726|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982735|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982740|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982748|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982751|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982758|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982761|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982772|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982776|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982787|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982791|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982798|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982802|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982811|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982815|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982824|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982827|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982833|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982837|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982845|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982849|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982859|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982862|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982872|4|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982875|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982882|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982885|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982892|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982895|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982904|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982907|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982915|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982918|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982925|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982928|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982935|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982938|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982945|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982947|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982953|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982956|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982962|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982964|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982970|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982973|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982978|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982980|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982985|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982988|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227982995|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227982997|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983003|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983006|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983012|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983016|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983024|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983026|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983033|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983036|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983043|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983045|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983051|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983054|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983060|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983062|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983067|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983069|0|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983075|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983078|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983082|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983084|0|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983090|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983093|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983098|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983100|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983108|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983110|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983115|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983118|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983124|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983126|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983132|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983134|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983139|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983141|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983146|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983149|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983159|6|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983161|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983169|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983172|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983182|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983184|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983191|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983194|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983201|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983203|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983210|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983212|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983219|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983222|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983228|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983230|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983236|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983238|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983244|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983246|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983251|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983253|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983260|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983262|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983268|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983270|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983276|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983278|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983282|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983285|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983292|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983294|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983299|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983301|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983308|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983310|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983316|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983318|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983323|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983326|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983331|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983333|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983339|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983341|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983346|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983348|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983354|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983356|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983361|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983363|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983368|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983371|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983376|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983378|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983383|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983385|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983390|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983392|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983397|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983399|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983406|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983409|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983415|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983417|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983425|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983427|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983433|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983435|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983441|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983443|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983449|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983451|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983458|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983461|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983467|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983470|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983477|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983480|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983487|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983489|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983494|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983497|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983501|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983504|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983510|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983511|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983518|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983521|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983526|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983528|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983534|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983537|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983543|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983545|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983550|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983552|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983558|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983560|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983565|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983567|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983573|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983575|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983580|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983582|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983587|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983589|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983594|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983595|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983600|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983602|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983608|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983610|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983615|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983616|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983622|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983624|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983629|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983631|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983635|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983637|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983643|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983644|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983649|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983651|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983657|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983659|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983664|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983665|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983670|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983672|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983677|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983679|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983684|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983686|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983692|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983695|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983701|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983703|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983709|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983711|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983718|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983720|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983726|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983728|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983733|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983735|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983741|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983743|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983748|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983750|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983756|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983758|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983763|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983765|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983769|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983772|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983777|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983780|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983787|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983789|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983795|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983797|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983801|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983803|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983808|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983810|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983816|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983817|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983824|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983826|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983831|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983832|0|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983838|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983840|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983845|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983847|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983851|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983854|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983859|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983862|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983869|3|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983873|2|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983878|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983880|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983885|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983886|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983892|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983894|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983899|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983900|0|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983906|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983908|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983912|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983914|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983920|2|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983922|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983927|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983928|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983933|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983935|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983940|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983942|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| +1773227983946|1|statement|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (? , ? , ? , ? , ? , ? , ? , ? , ? , ?)|select distinct city0_.id as id1_0_0_, country1_.id as id1_1_1_, languages2_.id as id1_2_2_, city0_.country_id as country_5_0_0_, city0_.district as district2_0_0_, city0_.name as name3_0_0_, city0_.population as populati4_0_0_, country1_.code_2 as code_2_1_1_, country1_.capital as capital16_1_1_, country1_.code as code3_1_1_, country1_.continent as continen4_1_1_, country1_.gnp as gnp5_1_1_, country1_.gnpo_id as gnpo_id6_1_1_, country1_.government_form as governme7_1_1_, country1_.head_of_state as head_of_8_1_1_, country1_.indep_year as indep_ye9_1_1_, country1_.life_expectancy as life_ex10_1_1_, country1_.local_name as local_n11_1_1_, country1_.name as name12_1_1_, country1_.population as populat13_1_1_, country1_.region as region14_1_1_, country1_.surface_area as surface15_1_1_, languages2_.country_id as country_5_2_2_, languages2_.language as language2_2_2_, languages2_.is_official as is_offic3_2_2_, languages2_.percentage as percenta4_2_2_, languages2_.country_id as country_5_2_0__, languages2_.id as id1_2_0__ from city city0_ inner join country country1_ on city0_.country_id=country1_.id inner join country_language languages2_ on country1_.id=languages2_.country_id where city0_.id in (3 , 2545 , 123 , 4 , 189 , 89 , 3458 , 1189 , 10 , 102) +1773227983948|1|commit|connection 0|url jdbc:p6spy:mysql://localhost:3306/world|| diff --git a/src/main/java/com/javarush/countryCache/Main.java b/src/main/java/com/javarush/countryCache/Main.java index 1cd2171..110c7e3 100644 --- a/src/main/java/com/javarush/countryCache/Main.java +++ b/src/main/java/com/javarush/countryCache/Main.java @@ -1,49 +1,53 @@ package com.javarush.countryCache; - import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; +import io.lettuce.core.KeyValue; +import io.lettuce.core.RedisClient; +import io.lettuce.core.RedisURI; +import io.lettuce.core.api.StatefulRedisConnection; +import io.lettuce.core.api.sync.RedisStringCommands; import com.javarush.countryCache.dao.CityDAO; import com.javarush.countryCache.dao.CountryDAO; - import com.javarush.countryCache.domain.City; import com.javarush.countryCache.domain.Country; import com.javarush.countryCache.domain.CountryLanguage; import com.javarush.countryCache.redis.CityCountry; import com.javarush.countryCache.redis.Language; -import io.lettuce.core.RedisClient; -import io.lettuce.core.RedisURI; -import io.lettuce.core.api.StatefulRedisConnection; -import io.lettuce.core.api.sync.RedisStringCommands; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; import org.hibernate.cfg.Environment; -import java.util.ArrayList; -import java.util.List; -import java.util.Properties; -import java.util.Set; +import java.util.*; import java.util.stream.Collectors; import static java.util.Objects.nonNull; + public class Main { private final SessionFactory sessionFactory; private final RedisClient redisClient; private final ObjectMapper mapper; private final CityDAO cityDAO; + @SuppressWarnings("unused") private final CountryDAO countryDAO; public static void main(String[] args) { Main app = new Main(); - try { - app.run(); - } finally { - app.shutdown(); - } + + // 1) Заливаем данные из MySQL -> Redis (это НЕ часть benchmark) + app.preloadRedisFromMysql(); + + // 2) Одни и те же id (используй существующие в БД) + List ids = List.of(3, 2545, 123, 4, 189, 89, 3458, 1189, 10, 102); + + // 3) Сравнение batch vs batch: Redis(MGET) vs MySQL(IN) + app.benchmarkBatch(ids, 10, 200); + + app.shutdown(); } public Main() { @@ -55,45 +59,110 @@ public Main() { mapper = new ObjectMapper(); } - public void run() { - List preparedData = new ArrayList<>(); + public void preloadRedisFromMysql() { + int step = 500; + + try (StatefulRedisConnection redisConn = redisClient.connect()) { + RedisStringCommands redis = redisConn.sync(); + + try (Session session = sessionFactory.openSession()) { + Transaction tx = session.beginTransaction(); + try { + int totalCount = cityDAO.getTotalCount(session); + + for (int offset = 0; offset < totalCount; offset += step) { + List batch = cityDAO.getItems(session, offset, step); + List prepared = transformData(batch); + pushToRedis(prepared, redis); + + session.clear(); + } + + tx.commit(); + } catch (Exception e) { + if (tx != null && tx.isActive()) tx.rollback(); + throw e; + } + } + } + } + + public void benchmarkBatch(List ids, int warmupRuns, int measuredRuns) { + String[] redisKeys = ids.stream().map(String::valueOf).toArray(String[]::new); + + try (StatefulRedisConnection redisConn = redisClient.connect()) { + RedisStringCommands redis = redisConn.sync(); + + // прогрев (чтобы первый запуск не портил картину) + for (int i = 0; i < warmupRuns; i++) { + readFromRedisBatch(redisKeys, redis); + readFromMysqlBatch(ids); + } + + long redisTotal = 0; + for (int i = 0; i < measuredRuns; i++) { + long t0 = System.nanoTime(); + readFromRedisBatch(redisKeys, redis); + redisTotal += (System.nanoTime() - t0); + } + + long mysqlTotal = 0; + for (int i = 0; i < measuredRuns; i++) { + long t0 = System.nanoTime(); + readFromMysqlBatch(ids); + mysqlTotal += (System.nanoTime() - t0); + } + + System.out.printf("Redis: %.3f ms (%d runs)%n", + redisTotal / 1_000_000.0 / measuredRuns, measuredRuns); + + System.out.printf("MySQL: %.3f ms (%d runs)%n", + mysqlTotal / 1_000_000.0 / measuredRuns, measuredRuns); + } + } + private List readFromRedisBatch(String[] keys, RedisStringCommands redis) { + List> values = redis.mget(keys); + List out = new ArrayList<>(values.size()); + + for (KeyValue kv : values) { + if (!kv.hasValue()) continue; + try { + out.add(mapper.readValue(kv.getValue(), CityCountry.class)); + } catch (JsonProcessingException e) { + throw new RuntimeException("Failed to parse JSON from Redis for key=" + kv.getKey(), e); + } + } + return out; + } + + private List readFromMysqlBatch(List ids) { try (Session session = sessionFactory.openSession()) { Transaction tx = session.beginTransaction(); try { - int totalCount = cityDAO.getTotalCount(session); + String hql = + "select distinct c " + + "from City c " + + "join fetch c.country co " + + "join fetch co.languages " + + "where c.id in (:ids)"; - int step = 500; - for (int offset = 0; offset < totalCount; offset += step) { - List batch = cityDAO.getItems(session, offset, step); - preparedData.addAll(transformData(batch)); - - // чтобы память не росла при больших объёмах - session.clear(); - } + List cities = session.createQuery(hql, City.class) + .setParameter("ids", ids) + .getResultList(); + List prepared = transformData(cities); tx.commit(); + return prepared; } catch (Exception e) { - if (tx != null && tx.isActive()) { - tx.rollback(); - } + if (tx != null && tx.isActive()) tx.rollback(); throw e; } } - - // Redis уже после DB транзакции (мы работаем с DTO, не с lazy-сущностями) - pushToRedis(preparedData); } - private RedisClient prepareRedisClient() { - RedisClient client = RedisClient.create(RedisURI.create("127.0.0.1", 6379)); - try (StatefulRedisConnection connection = client.connect()) { - System.out.println("Connected to Redis"); - } - return client; - } private List transformData(List cities) { return cities.stream().map(city -> { CityCountry res = new CityCountry(); @@ -125,32 +194,38 @@ private List transformData(List cities) { }).collect(Collectors.toList()); } - private void pushToRedis(List data) { - try (StatefulRedisConnection connection = redisClient.connect()) { - RedisStringCommands sync = connection.sync(); - - for (CityCountry cityCountry : data) { - try { - sync.set(String.valueOf(cityCountry.getId()), mapper.writeValueAsString(cityCountry)); - } catch (JsonProcessingException e) { - e.printStackTrace(); - } + private void pushToRedis(List data, RedisStringCommands redis) { + for (CityCountry cityCountry : data) { + try { + redis.set(String.valueOf(cityCountry.getId()), mapper.writeValueAsString(cityCountry)); + } catch (JsonProcessingException e) { + throw new RuntimeException("Failed to serialize CityCountry id=" + cityCountry.getId(), e); } } } + private RedisClient prepareRedisClient() { + RedisClient client = RedisClient.create(RedisURI.create("127.0.0.1", 6379)); + try (StatefulRedisConnection connection = client.connect()) { + System.out.println("Connected to Redis"); + } + return client; + } + private SessionFactory prepareRelationalDb() { Properties properties = new Properties(); properties.put(Environment.DIALECT, "org.hibernate.dialect.MySQL8Dialect"); + + // Для более честного замера лучше обычный драйвер (p6spy добавляет оверхед). + // properties.put(Environment.DRIVER, "com.mysql.cj.jdbc.Driver"); + // properties.put(Environment.URL, "jdbc:mysql://localhost:3306/world"); + properties.put(Environment.DRIVER, "com.p6spy.engine.spy.P6SpyDriver"); properties.put(Environment.URL, "jdbc:p6spy:mysql://localhost:3306/world"); + properties.put(Environment.USER, "root"); properties.put(Environment.PASS, "root"); properties.put(Environment.HBM2DDL_AUTO, "validate"); - properties.put(Environment.STATEMENT_BATCH_SIZE, "100"); - - // ВАЖНО: если ты используешь openSession(), то thread-context НЕ нужен: - // properties.put(Environment.CURRENT_SESSION_CONTEXT_CLASS, "thread"); return new Configuration() .addAnnotatedClass(City.class) @@ -160,33 +235,11 @@ private SessionFactory prepareRelationalDb() { .buildSessionFactory(); } + + + private void shutdown() { if (nonNull(sessionFactory)) sessionFactory.close(); if (nonNull(redisClient)) redisClient.shutdown(); } -} - - - - - - - - - - - - - - - - - - - - - - - - - +} \ No newline at end of file diff --git a/src/test/java/BenchmarkTest.java b/src/test/java/BenchmarkTest.java new file mode 100644 index 0000000..584ed8e --- /dev/null +++ b/src/test/java/BenchmarkTest.java @@ -0,0 +1,187 @@ +package com.javarush.countryCache; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import io.lettuce.core.RedisClient; +import io.lettuce.core.RedisURI; +import io.lettuce.core.api.StatefulRedisConnection; +import io.lettuce.core.api.sync.RedisStringCommands; +import com.javarush.countryCache.dao.CityDAO; +import com.javarush.countryCache.domain.City; +import com.javarush.countryCache.domain.Country; +import com.javarush.countryCache.domain.CountryLanguage; +import com.javarush.countryCache.redis.CityCountry; +import com.javarush.countryCache.redis.Language; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.cfg.Configuration; +import org.hibernate.cfg.Environment; +import org.openjdk.jmh.annotations.*; +import org.openjdk.jmh.runner.Runner; +import org.openjdk.jmh.runner.RunnerException; +import org.openjdk.jmh.runner.options.Options; +import org.openjdk.jmh.runner.options.OptionsBuilder; + +import java.util.List; +import java.util.Properties; +import java.util.Set; +import java.util.concurrent.TimeUnit; +import java.util.stream.Collectors; + + +@State(Scope.Benchmark) +@BenchmarkMode(Mode.AverageTime) +@OutputTimeUnit(TimeUnit.MILLISECONDS) +@Warmup(iterations = 2, time = 5) +@Measurement(iterations = 3, time = 5) +@Fork(1) +public class BenchmarkTest { + + private SessionFactory sessionFactory; + private CityDAO cityDAO; + + private RedisClient redisClient; + private ObjectMapper objectMapper; + + // используй существующие id из world.city + private final List testIds = List.of(3, 2545, 123, 4, 189, 89, 3458, 1189, 10, 102); + + public static void main(String[] args) { + Options options = new OptionsBuilder() + .include(BenchmarkTest.class.getSimpleName()) + .build(); + try { + new Runner(options).run(); + } catch (RunnerException e) { + throw new RuntimeException(e); + } + } + + @Setup(Level.Trial) + public void setup() { + sessionFactory = prepareRelationalDb(); + cityDAO = new CityDAO(sessionFactory); + + redisClient = RedisClient.create(RedisURI.create("localhost", 6379)); + objectMapper = new ObjectMapper(); + + // Заполняем Redis данными из MySQL + try (Session session = sessionFactory.getCurrentSession()) { + session.beginTransaction(); + + int totalCount = cityDAO.getTotalCount(session); + int step = 500; + + try (StatefulRedisConnection connection = redisClient.connect()) { + RedisStringCommands sync = connection.sync(); + + for (int offset = 0; offset < totalCount; offset += step) { + List batch = cityDAO.getItems(session, offset, step); + + + List prepared = batch.stream().map(city -> { + CityCountry res = new CityCountry(); + res.setId(city.getId()); + res.setName(city.getName()); + res.setPopulation(city.getPopulation()); + res.setDistrict(city.getDistrict()); + + Country country = city.getCountry(); + res.setAlternativeCountryCode(country.getAlternativeCode()); + res.setContinent(country.getContinent()); + res.setCountryCode(country.getCode()); + res.setCountryName(country.getName()); + res.setCountryPopulation(country.getPopulation()); + res.setCountryRegion(country.getRegion()); + res.setCountrySurfaceArea(country.getSurfaceArea()); + + Set cls = country.getLanguages(); + Set languages = cls.stream().map(cl -> { + Language lang = new Language(); + lang.setLanguage(cl.getLanguage()); + lang.setOfficial(cl.getOfficial()); + lang.setPercentage(cl.getPercentage()); + return lang; + }).collect(Collectors.toSet()); + + res.setLanguages(languages); + return res; + }).collect(Collectors.toList()); + + for (CityCountry cc : prepared) { + try { + sync.set("city:" + cc.getId(), objectMapper.writeValueAsString(cc)); + } catch (JsonProcessingException e) { + throw new RuntimeException(e); + } + } + + session.clear(); + } + } + + session.getTransaction().commit(); + } + } + + @TearDown(Level.Trial) + public void tearDown() { + if (sessionFactory != null) sessionFactory.close(); + if (redisClient != null) redisClient.shutdown(); + } + + @Benchmark + public void readFromRedis() { + try (StatefulRedisConnection connection = redisClient.connect()) { + RedisStringCommands sync = connection.sync(); + for (Integer id : testIds) { + String json = sync.get("city:" + id); + objectMapper.readValue(json, CityCountry.class); + } + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + @Benchmark + public void readFromMySQL() { + try (Session session = sessionFactory.getCurrentSession()) { + session.beginTransaction(); + + for (Integer id : testIds) { + City city = session.createQuery( + "select distinct c " + + "from City c " + + "join fetch c.country co " + + "join fetch co.languages " + + "where c.id = :id", + City.class + ).setParameter("id", id) + .getResultList() + .get(0); + + city.getCountry().getLanguages().size(); + } + + session.getTransaction().commit(); + } + } + private static SessionFactory prepareRelationalDb() { + Properties properties = new Properties(); + properties.put(Environment.DIALECT, "org.hibernate.dialect.MySQL8Dialect"); + properties.put(Environment.DRIVER, "com.p6spy.engine.spy.P6SpyDriver"); + properties.put(Environment.URL, "jdbc:p6spy:mysql://localhost:3306/world"); + properties.put(Environment.USER, "root"); + properties.put(Environment.PASS, "root"); + properties.put(Environment.CURRENT_SESSION_CONTEXT_CLASS, "thread"); + properties.put(Environment.HBM2DDL_AUTO, "validate"); + properties.put(Environment.STATEMENT_BATCH_SIZE, "100"); + + return new Configuration() + .addAnnotatedClass(City.class) + .addAnnotatedClass(Country.class) + .addAnnotatedClass(CountryLanguage.class) + .addProperties(properties) + .buildSessionFactory(); + } +} \ No newline at end of file diff --git a/src/test/java/PerformanceTest.java b/src/test/java/PerformanceTest.java new file mode 100644 index 0000000..dfd4cf7 --- /dev/null +++ b/src/test/java/PerformanceTest.java @@ -0,0 +1,177 @@ +package com.javarush.countryCache; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; +import io.lettuce.core.RedisClient; +import io.lettuce.core.RedisURI; +import io.lettuce.core.api.StatefulRedisConnection; +import io.lettuce.core.api.sync.RedisStringCommands; +import lombok.extern.slf4j.Slf4j; +import com.javarush.countryCache.dao.CityDAO; +import com.javarush.countryCache.domain.City; +import com.javarush.countryCache.domain.Country; +import com.javarush.countryCache.domain.CountryLanguage; +import com.javarush.countryCache.redis.CityCountry; +import com.javarush.countryCache.redis.Language; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.cfg.Configuration; +import org.hibernate.cfg.Environment; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; + +import java.util.List; +import java.util.Properties; +import java.util.Set; +import java.util.stream.Collectors; + +import static org.junit.jupiter.api.Assertions.assertNotNull; + +@Slf4j +class PerformanceTest { + + private static SessionFactory sessionFactory; + private static CityDAO cityDAO; + private static RedisClient redisClient; + private static ObjectMapper mapper; + private static List testIds = List.of(3, 2545, 123, 4, 189, 89, 3458, 1189, 10, 102); + + @BeforeAll + static void setup() { + sessionFactory = prepareRelationalDb(); + cityDAO = new CityDAO(sessionFactory); + + redisClient = RedisClient.create(RedisURI.create("localhost", 6379)); + try (StatefulRedisConnection connection = redisClient.connect()) { + log.info("Redis connection established"); + } + + mapper = new ObjectMapper(); + + List cities; + try (Session session = sessionFactory.getCurrentSession()) { + session.beginTransaction(); + cities = session.createQuery( + "select distinct c " + + "from City c " + + "join fetch c.country co " + + "join fetch co.languages", + City.class + ) + .getResultList(); + session.getTransaction().commit(); + } + + List cityCountries = transformData(cities); + pushToRedis(cityCountries); + } + + @AfterAll + static void tearDown() { + if (sessionFactory != null && !sessionFactory.isClosed()) { + sessionFactory.close(); + } + if (redisClient != null) { + redisClient.shutdown(); + } + } + + @Test + void testRedisPerformance() { + long start = System.currentTimeMillis(); + try (StatefulRedisConnection connection = redisClient.connect()) { + RedisStringCommands sync = connection.sync(); + for (Integer id : testIds) { + String json = sync.get("city:" + id); + assertNotNull(json, "City data for " + id + " was not found in Redis"); + mapper.readValue(json, CityCountry.class); + } + } catch (JsonProcessingException e) { + log.error("Error " + e); + } + long duration = System.currentTimeMillis() - start; + log.info("Redis read 10 cities: " + duration + " ms"); + } + + @Test + void testMySqlPerformance() { + long start = System.currentTimeMillis(); + try (Session session = sessionFactory.getCurrentSession()) { + session.beginTransaction(); + + for (Integer id : testIds) { + City city = session.get(City.class, id); + assertNotNull(city, "City with id " + id + " was not found in MySQL"); + city.getCountry().getLanguages().size(); + } + + session.getTransaction().commit(); + } + long duration = System.currentTimeMillis() - start; + log.info("MySQL read 10 cities: " + duration + " ms"); + } + + private static void pushToRedis(List data) { + try (StatefulRedisConnection connection = redisClient.connect()) { + RedisStringCommands redisStringCommands = connection.sync(); + for (CityCountry cityCountry : data) { + String key = "city:" + cityCountry.getId(); // city:123 + String value = mapper.writeValueAsString(cityCountry); // JSON-строка + redisStringCommands.set(key, value); + } + } catch (JsonProcessingException e) { + log.error("Error in Redis" + e); + } + } + + private static List transformData(List cities) { + return cities.stream().map(city -> { + CityCountry res = new CityCountry(); + res.setId(city.getId()); + res.setName(city.getName()); + res.setPopulation(city.getPopulation()); + res.setDistrict(city.getDistrict()); + + Country country = city.getCountry(); + res.setAlternativeCountryCode(country.getAlternativeCode()); + res.setContinent(country.getContinent()); + res.setCountryCode(country.getCode()); + res.setCountryName(country.getName()); + res.setCountryPopulation(country.getPopulation()); + res.setCountryRegion(country.getRegion()); + res.setCountrySurfaceArea(country.getSurfaceArea()); + + Set cls = country.getLanguages(); + Set languages = cls.stream().map(cl -> { + Language lang = new Language(); + lang.setLanguage(cl.getLanguage()); + lang.setOfficial(cl.getOfficial()); + lang.setPercentage(cl.getPercentage()); + return lang; + }).collect(Collectors.toSet()); + + res.setLanguages(languages); + return res; + }).collect(Collectors.toList()); + } + + private static SessionFactory prepareRelationalDb() { + Properties properties = new Properties(); + properties.put(Environment.DIALECT, "org.hibernate.dialect.MySQL8Dialect"); + properties.put(Environment.DRIVER, "com.p6spy.engine.spy.P6SpyDriver"); + properties.put(Environment.URL, "jdbc:p6spy:mysql://localhost:3306/world"); + properties.put(Environment.USER, "root"); + properties.put(Environment.PASS, "root"); + properties.put(Environment.CURRENT_SESSION_CONTEXT_CLASS, "thread"); + properties.put(Environment.HBM2DDL_AUTO, "validate"); + properties.put(Environment.STATEMENT_BATCH_SIZE, "100"); + + return new Configuration() + .addAnnotatedClass(City.class) + .addAnnotatedClass(Country.class) + .addAnnotatedClass(CountryLanguage.class) + .addProperties(properties) + .buildSessionFactory(); + } +} From 7df7a73a326da0e75f8344f6d655e6c22cee5d84 Mon Sep 17 00:00:00 2001 From: Roman-M-git Date: Wed, 11 Mar 2026 13:50:39 +0200 Subject: [PATCH 6/6] README.md --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/README.md b/README.md index e69de29..8a875d8 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,34 @@ +# О проекте + +Проект демонстрирует ускорение получения данных из базы данных с помощью кэширования. +Технологии, используемые в проекте: +Java +Hibernate +MySQL +Redis +Docker +Maven +IntelliJ IDEA + +# Идея проекта: +часто запрашиваемые данные из MySQL сохраняются в Redis, чтобы ускорить получение данных. + +# Требования + +Перед запуском проекта необходимо установить: +Docker +MySQL Workbench (или любой другой MySQL клиент) +IntelliJ IDEA + +# Действия + +1. Запуск контейнера MySQL +2. Импорт базы данных (дамп из "Проект по теме: SQL, JDBC и Hibernate") +Схема: + world +Таблицы: + city + country + country_language +3. Запуск Redis +4. Запуск проекта Main -> Run \ No newline at end of file