diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..92aaa768e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,45 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Electron: Main", + "type": "node", + "request": "launch", + "cwd":"${workspaceFolder}/apps/studio", + "runtimeExecutable": "${workspaceFolder}/apps/studio/node_modules/.bin/electron", + "preLaunchTask": "electron-debug", + "args": [ + "--remote-debugging-port=9223", + "./dist_electron", + "--enable-logging" + ], + "sourceMapPathOverrides": { + "webpack:///./src/*": "${webRoot}/apps/studio/src/*" + }, + "sourceMaps": true, + }, + + { + "name": "Electron: Renderer", + "type": "chrome", + "request": "attach", + "port": 9223, + "urlFilter": "http://localhost:*", + "timeout": 50000, + "webRoot": "${workspaceFolder}", + "sourceMapPathOverrides": { + "webpack:///./src/*": "${webRoot}/apps/studio/src/*" + }, + "sourceMaps": true, + } + ], + "compounds": [ + { + "name": "Electron: All", + "configurations": [ + "Electron: Main", + "Electron: Renderer" + ] + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000..7ee14c677 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,32 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "electron-debug", + "type": "process", + "echoCommand": true, + "options": { + "cwd": "apps/studio" + }, + "command": "./node_modules/.bin/vue-cli-service", + "isBackground": true, + "args": [ + "electron:serve", + "--remote-debugging-port=9223", + "--debug", + ], + "problemMatcher": { + "owner": "custom", + "pattern": { + "regexp": "" + }, + "background": { + "beginsPattern": "Starting development server\\.\\.\\.", + "endsPattern": "Not launching electron as debug argument was passed\\." + } + } + } + ] +} diff --git a/apps/studio/src/assets/styles/app/connection-interface.scss b/apps/studio/src/assets/styles/app/connection-interface.scss index 7710fc15e..b9d44f75f 100644 --- a/apps/studio/src/assets/styles/app/connection-interface.scss +++ b/apps/studio/src/assets/styles/app/connection-interface.scss @@ -48,6 +48,9 @@ .sqlite-form { margin-bottom: $gutter-h; } + .bigquery-form { + margin-bottom: $gutter-h; + } .text-connect { padding-top: 0.25rem; } diff --git a/apps/studio/src/background.ts b/apps/studio/src/background.ts index c7696c6ed..c30702332 100644 --- a/apps/studio/src/background.ts +++ b/apps/studio/src/background.ts @@ -101,6 +101,12 @@ app.on('activate', async (_event, hasVisibleWindows) => { // Some APIs can only be used after this event occurs. app.on('ready', async () => { if (isDevelopment && !process.env.IS_TEST) { + // Need to explicitly disable CORS when running in dev mode because + // we can't connect to bigquery-emulator on localhost. + // See: https://github.com/electron/electron/issues/23664 + console.log("Dev mode detected, disabling CORS") + app.commandLine.appendSwitch('disable-web-security'); + app.commandLine.appendSwitch('disable-features', 'OutOfBlinkCors') // Install Vue Devtools try { console.log("installing vue devtools") diff --git a/apps/studio/src/common/appdb/models/saved_connection.ts b/apps/studio/src/common/appdb/models/saved_connection.ts index 1925289b5..473d01c09 100644 --- a/apps/studio/src/common/appdb/models/saved_connection.ts +++ b/apps/studio/src/common/appdb/models/saved_connection.ts @@ -22,7 +22,8 @@ export const ConnectionTypes = [ { name: 'Amazon Redshift', value: 'redshift' }, { name: 'CockroachDB', value: 'cockroachdb' }, { name: 'Oracle', value: 'other' }, - { name: 'Cassandra', value: 'other' } + { name: 'Cassandra', value: 'other' }, + { name: 'BigQuery', value: 'bigquery' }, ] export const keymapTypes = [ @@ -40,6 +41,12 @@ export interface RedshiftOptions { tokenDurationSeconds?: number; } +export interface BigQueryOptions { + iamAuthenticationEnabled?: boolean + keyFilename?: string; + projectId?: string; +} + export interface ConnectionOptions { cluster?: string } @@ -99,6 +106,8 @@ export class DbConnectionBase extends ApplicationEntity { return 1433 } else if (this.connectionType === 'cockroachdb') { return 26257 + } else if (this._connectionType === 'bigquery') { + return 443 } return null } @@ -185,6 +194,9 @@ export class DbConnectionBase extends ApplicationEntity { @Column({ type: 'simple-json', nullable: false }) redshiftOptions: RedshiftOptions = {} + @Column({ type: 'simple-json', nullable: false }) + bigQueryOptions: BigQueryOptions = {} + // this is only for SQL Server. @Column({ type: 'boolean', nullable: false }) trustServerCertificate = false diff --git a/apps/studio/src/common/appdb/models/used_connection.ts b/apps/studio/src/common/appdb/models/used_connection.ts index 692aa2615..f051f6b23 100644 --- a/apps/studio/src/common/appdb/models/used_connection.ts +++ b/apps/studio/src/common/appdb/models/used_connection.ts @@ -30,6 +30,7 @@ export class UsedConnection extends DbConnectionBase implements ISimpleConnectio this.options = other.options this.trustServerCertificate = other.trustServerCertificate this.redshiftOptions = other.redshiftOptions + this.bigQueryOptions = other.bigQueryOptions } } diff --git a/apps/studio/src/common/interfaces/IConnection.ts b/apps/studio/src/common/interfaces/IConnection.ts index 338a61bd9..6551fe3b0 100644 --- a/apps/studio/src/common/interfaces/IConnection.ts +++ b/apps/studio/src/common/interfaces/IConnection.ts @@ -1,6 +1,7 @@ import { RedshiftOptions } from "../appdb/models/saved_connection" +import { BigQueryOptions } from "../appdb/models/saved_connection" -export type ConnectionType = 'sqlite' | 'sqlserver' | 'redshift' | 'cockroachdb' | 'mysql' | 'postgresql' | 'mariadb' | 'cassandra' +export type ConnectionType = 'sqlite' | 'sqlserver' | 'redshift' | 'cockroachdb' | 'mysql' | 'postgresql' | 'mariadb' | 'cassandra' | 'bigquery' export type SshMode = null | 'agent' | 'userpass' | 'keyfile' export interface ISimpleConnection { @@ -31,6 +32,7 @@ export interface ISimpleConnection { trustServerCertificate?: boolean options?: any redshiftOptions?: RedshiftOptions + bigQueryOptions?: BigQueryOptions } export interface IConnection extends ISimpleConnection { diff --git a/apps/studio/src/components/ConnectionInterface.vue b/apps/studio/src/components/ConnectionInterface.vue index e370308ac..4c60cbdf0 100644 --- a/apps/studio/src/components/ConnectionInterface.vue +++ b/apps/studio/src/components/ConnectionInterface.vue @@ -109,6 +109,11 @@ :config="config" :testing="testing" /> + @@ -161,239 +166,240 @@ class="pitch" v-if="!config.connectionType" > - 🧚 Hey! If you love the app, consider buying the full version of Beekeeper Studio to support us (and get more features too!). Learn more >. - Beekeeper Studio {{ version }} + Beekeeper Studio {{ version + }} - + diff --git a/apps/studio/src/components/connection/BigQueryForm.vue b/apps/studio/src/components/connection/BigQueryForm.vue new file mode 100644 index 000000000..0274e60e2 --- /dev/null +++ b/apps/studio/src/components/connection/BigQueryForm.vue @@ -0,0 +1,69 @@ + + + + ProjectId + + + + + IAM Authentication + + + + + + info + + Create a service account key. Read + More + + + + + + + Key file + + + + + + + + + + diff --git a/apps/studio/src/lib/connection-provider.ts b/apps/studio/src/lib/connection-provider.ts index 7e651bebb..b93579607 100644 --- a/apps/studio/src/lib/connection-provider.ts +++ b/apps/studio/src/lib/connection-provider.ts @@ -36,7 +36,8 @@ export default { sslRejectUnauthorized: config.sslRejectUnauthorized, trustServerCertificate: config.trustServerCertificate, options: config.options, - redshiftOptions: config.redshiftOptions + redshiftOptions: config.redshiftOptions, + bigQueryOptions: config.bigQueryOptions, } }, diff --git a/apps/studio/src/lib/db/client.ts b/apps/studio/src/lib/db/client.ts index 75cd9dd5a..07be94232 100644 --- a/apps/studio/src/lib/db/client.ts +++ b/apps/studio/src/lib/db/client.ts @@ -5,7 +5,7 @@ import createLogger from '../logger'; import { SSHConnection } from '@/vendor/node-ssh-forward/index'; import { SupportedFeatures, FilterOptions, TableOrView, Routine, TableColumn, SchemaFilterOptions, DatabaseFilterOptions, TableChanges, TableUpdateResult, OrderBy, TableFilter, TableResult, StreamResults, CancelableQuery, ExtendedTableColumn, PrimaryKeyColumn, TableProperties, TableIndex, TableTrigger, TableInsert, TablePartition } from './models'; import { AlterPartitionsSpec, AlterTableSpec, IndexAlterations, RelationAlterations } from '@shared/lib/dialects/models'; -import type { RedshiftOptions } from '@/common/appdb/models/saved_connection'; +import type { RedshiftOptions, BigQueryOptions } from '@/common/appdb/models/saved_connection'; const logger = createLogger('db'); @@ -128,6 +128,7 @@ export interface IDbConnectionServerConfig { trustServerCertificate?: boolean options?: any redshiftOptions?: RedshiftOptions + bigQueryOptions?: BigQueryOptions } export interface IDbSshTunnel { @@ -513,7 +514,7 @@ function getViewCreateScript(server: IDbConnectionServer, database: IDbConnectio function getMaterializedViewCreateScript(server: IDbConnectionServer, database: IDbConnectionDatabase, view: string /* , schema */) { checkIsConnected(server , database); - if(typeof database.connection?.getMaterializedViewCreateScript !== 'function') { + if (typeof database.connection?.getMaterializedViewCreateScript !== 'function') { return null; } else { return database.connection?.getMaterializedViewCreateScript(view); diff --git a/apps/studio/src/lib/db/clients/bigquery.js b/apps/studio/src/lib/db/clients/bigquery.js new file mode 100644 index 000000000..8096188c9 --- /dev/null +++ b/apps/studio/src/lib/db/clients/bigquery.js @@ -0,0 +1,290 @@ +import { errors } from '../../errors'; +import * as bq from '@google-cloud/bigquery'; +import { DatabaseClient, IDbConnectionServerConfig, DatabaseElement } from '../client' +import { FilterOptions, OrderBy, TableFilter, TableUpdateResult, TableResult, Routine, TableChanges, TableInsert, TableUpdate, TableDelete, DatabaseFilterOptions, SchemaFilterOptions, NgQueryResult, StreamResults, ExtendedTableColumn, PrimaryKeyColumn, TableIndex, IndexedColumn, } from "../models"; + + +import rawLog from 'electron-log' +import { createCancelablePromise } from '@/common/utils'; +import { BigQueryOptions } from '@/common/appdb/models/saved_connection'; +import { table, time } from 'console'; +import { data } from 'jquery'; +import { buildDeleteQueries, buildInsertQueries, buildUpdateQueries, buildInsertQuery, genericSelectTop, buildSelectTopQuery, escapeString, joinQueries, escapeLiteral, applyChangesSql } from './utils'; +const log = rawLog.scope('bigquery') +const logger = () => log + +/** + * To keep compatibility with the other clients we treat dataset as database. + */ +export default async function (server, database) { + let client = null + logger().debug(`bigquery client creating `, server, ` database:`, database, ` config:`, server.config) + const dbConfig = configDatabase(server, database) + client = new bq.BigQuery(dbConfig) + logger().debug('bigquery client created ', client) + + // light solution to test connection with with a simple query + const results = await executeQuery(client, { query: 'SELECT CURRENT_TIMESTAMP()' }); + logger().debug("bigquery client connected") + + return { + supportedFeatures: () => ({ customRoutines: false, comments: false, properties: true, partitions: false, editPartitions: false }), + disconnect: () => disconnect(client), + listTables: (db) => listTables(client, db), + listViews: (filter) => listViews(client, database.database, filter), + listMaterializedViews: () => Promise.resolve([]), + listRoutines: () => Promise.resolve([]), + listTableColumns: (db, table) => listTableColumns(client, db, table), + getTableLength: (table) => getTableLength(client, database.database, table), + selectTop: (table, offset, limit, orderBy, filters, schema, selects) => selectTop(client, database.database, table, offset, limit, orderBy, filters, selects), + getTableKeys: (db, table) => Promise.resolve([]), + getPrimaryKeys: (db, table) => Promise.resolve([]), + query: (queryText) => query(client, queryText), + executeQuery: (queryText) => executeQuery(client, queryText), + listDatabases: () => listDatasets(client), + getTableProperties: (table) => getTableProperties(client, database.database, table), + versionString: () => getVersionString(), + // db creation + // TODO: determine if bigquery has different charsets + listCharsets: () => [], + getDefaultCharset: () => null, + listCollations: (charset) => [], + createDatabase: (databaseName) => createDatabase(client, databaseName), + }; +} + + +function configDatabase(server, database) { + + const host = server.config.host + const port = server.config.port + + // For BigQuery Only -- IAM authentication and credential exchange + const bigQueryOptions = server.config.bigQueryOptions + const config = {} + + config.projectId = bigQueryOptions.projectId || server.config.projectId + if (server.config.client === 'bigquery' && bigQueryOptions?.iamAuthenticationEnabled) { + config.keyFilename = bigQueryOptions.keyFilename + } + // For testing purposes + if (host !== "" && port !== "") { + config.apiEndpoint = "http://" + host + ":" + port + logger().debug(`configDatabase host: ${host} port: ${port} setting apiEndpoint: ${config.apiEndpoint}`) + } // use default otherwise + + logger().debug("configDatabase config: ", config) + return config +} + + +function query(client, queryText) { + logger().debug('bigQuery query: ' + queryText) + let job = null + let canceling = false + const cancelable = createCancelablePromise({ + ...errors.CANCELED_BY_USER, + sqlectronError: 'CANCELED_BY_USER', + }) + + return { + async execute() { + // Get a query job first + [job] = await client.createQueryJob({ query: queryText }) + logger().debug("created job: ", job.id) + + try { + logger().debug("wait for executeQuery job.id: ", job.id) + const data = await Promise.race([ + cancelable.wait(), + executeQuery(client, queryText, job), + ]) + return data + } catch (err) { + log.error('executeQuery error: ', err) + throw err + } + }, + async cancel() { + if (!job) { + throw new Error('Query not ready to be canceled') + } + canceling = true + try { + const [jobCancelResponse] = await job.cancel() + logger().debug("query jobCancelResponse: ", jobCancelResponse) + cancelable.cancel() + } catch (err) { + canceling = false + throw err + } finally { + canceling = false + cancelable.discard() + } + }, + } +} + + +function getVersionString() { + return null +} + + +function parseRowData(data) { + // BigQuery can return nested objects with custom types in the results + // look for the value string property. + // https://github.com/googleapis/nodejs-bigquery/blob/71dbed2140893677f7af254f5a7713a7f50bae92/src/bigquery.ts#L2191 + return data.map((row) => { + const parsedRow = {} + Object.keys(row).forEach((key) => { + let strValue = row[key] + if (strValue != null && (Object.prototype.hasOwnProperty.call(strValue, 'value'))) { + strValue = row[key].value + } + parsedRow[key] = strValue + }) + return parsedRow + }) +} + + +function parseRowQueryResult(data) { + // Fallback in case the identifier could not reconize the command + const isSelect = Array.isArray(data) + const rows = parseRowData(data) || [] + const fields = Object.keys(rows[0] || {}).map((name) => ({ name, id: name })) + logger().debug("parseRowQueryResult data length: ", data.length) + + return { + command: isSelect ? 'SELECT' : 'UNKNOWN', + rows, + fields: fields, + rowCount: data && data.length, + affectedRows: 0, + } +} + + +async function executeQuery(client, queries, job) { + // Support passing a single query string and an object with params + if (queries instanceof String) { + queries = { query: queries } + } + if (!job) { + [job] = await client.createQueryJob(queries) + } + + // Wait for the query to finish + const results = await job.getQueryResults() + return results.map(parseRowQueryResult) +} + + +export async function disconnect(client) { + return Promise.resolve() +} + + +function ensureDbFullName(client, db) { + if ((db.includes(`${client.projectId}.`)) || db.includes(`.${db}`)) { + return db + } else { + return `${client.projectId}.${db}` + } +} + + +async function listTablesOrViews(client, db, type) { + // Lists all tables or views in the dataset + const [tables] = await client.dataset(db).getTables() + var data = tables.map((table) => ({ name: table.id, entityType: table.metadata.type, metadata: table.metadata, table: table })) + data = data.filter((table) => table.metadata.type === type) + logger().debug(`listTablesAndViews for type:${type} data: `, data) + return data +} + +export async function listTables(client, db) { + // Lists all tables in the dataset + const data = await listTablesOrViews(client, db, 'TABLE') + return data +} + + +export async function listTableColumns(client, db, table) { + // Lists all columns in a table + const [metadata] = await client.dataset(db).table(table).getMetadata() + const data = metadata.schema.fields.map((field) => ({ columnName: field.name, dataType: field.type })) + return data +} + + +export async function getTableProperties(client, db, table) { + logger().debug("getTableProperties: ", table) + + const [ + length, + indexes, + triggers, // BigQuery has no triggers + relations // BigQuery has no relations + ] = await Promise.all([ + getTableLength(client, db, table), + null, + null, + null, + ]) + return { + length, indexes, relations, triggers + } +} + + +export async function getTableLength(client, db, table) { + // Returns the number of rows in the table + const [metadata] = await client.dataset(db).table(table).getMetadata() + return Number(metadata.numRows) +} + + +export async function listTableIndexes(client, db, table) { + return [] +} + + +export async function listDatasets(client) { + // Lists all datasets in current GCP project. + const [datasets] = await client.getDatasets() + const data = datasets.map((dataset) => dataset.id) + return data +} + +export async function selectTop(client, db, table, offset, limit, orderBy, filters, selects) { + const columns = await listTableColumns(client, db, table) + const bqTable = db + "." + table + const queries = buildSelectTopQuery(bqTable, offset, limit, orderBy, filters, 'total', columns, selects) + const queriesResult = await executeQuery(client, queries) + const data = queriesResult[0] + const rowCount = Number(data.rowCount) + const fields = Object.keys(data.rows[0] || {}) + + const result = { + totalRows: rowCount, + result: data.rows, + fields: { fields } + } + return result +} + + +export async function listViews(client, db, filter) { + // Lists all views in the dataset + const data = await listTablesOrViews(client, db, 'VIEW') + return data +} + +export async function createDatabase(client, databaseName) { + // Create a new dataset/database + const options = {} + const [dataset] = await client.createDataset(databaseName, options); + logger().debug(`Dataset ${dataset.id} created.`); +} diff --git a/apps/studio/src/lib/db/clients/index.ts b/apps/studio/src/lib/db/clients/index.ts index 8995baca6..24f056a83 100644 --- a/apps/studio/src/lib/db/clients/index.ts +++ b/apps/studio/src/lib/db/clients/index.ts @@ -5,6 +5,7 @@ import postgresql from './postgresql'; import sqlserver from './sqlserver'; import sqlite from './sqlite'; import cassandra from './cassandra'; +import bigquery from './bigquery.js'; export function findClient(key: string): Client | undefined { @@ -124,6 +125,21 @@ export const CLIENTS: ClientConfig[] = [ 'cancelQuery', ], }, + { + key: 'bigquery', + name: 'BigQuery', + defaultPort: 443, + disabledFeatures: [ + 'server:ssl', + 'server:socketPath', + 'server:user', + 'server:password', + 'server:schema', + 'server:domain', + 'server:ssh', + 'scriptCreateTable', + ], + }, ]; @@ -135,5 +151,6 @@ export default { cassandra, redshift: postgresql, mariadb: mysql, - cockroachdb: postgresql + cockroachdb: postgresql, + bigquery, }; diff --git a/apps/studio/src/migration/20230426_add_bigquery_options.js b/apps/studio/src/migration/20230426_add_bigquery_options.js new file mode 100644 index 000000000..e437c5c0b --- /dev/null +++ b/apps/studio/src/migration/20230426_add_bigquery_options.js @@ -0,0 +1,13 @@ +export default { + name: "20230426-add-bigqqery_options", + async run(runner) { + const queries = [ + `ALTER TABLE saved_connection ADD COLUMN bigQueryOptions text not null default '{}'`, + `ALTER TABLE used_connection ADD COLUMN bigQueryOptions text not null default '{}'`, + ]; + for (let i = 0; i < queries.length; i++) { + const query = queries[i]; + await runner.query(query); + } + } +}; diff --git a/apps/studio/src/migration/dev-1.js b/apps/studio/src/migration/dev-1.js index 0f4c88074..8f4499816 100644 --- a/apps/studio/src/migration/dev-1.js +++ b/apps/studio/src/migration/dev-1.js @@ -44,6 +44,14 @@ export default { password: 'Example@1', defaultDatabase: 'sakila' }, + { + name: "[DEV] Docker Bigquery", + connectionType: 'bigquery', + port: 9050, + host: 'localhost', + projectId: 'bks', + defaultDatabase: 'world', + }, { name: "Beekeeper's Database", connectionType: "sqlite", diff --git a/apps/studio/src/migration/index.js b/apps/studio/src/migration/index.js index 2f7eb80b9..bcff88772 100644 --- a/apps/studio/src/migration/index.js +++ b/apps/studio/src/migration/index.js @@ -31,6 +31,7 @@ import createHiddenSchemas from './20220908_create_hidden_schemas' import redshiftOptions from './20220817_add_redshift_options' import connectionPins from './20230308_create_connection_pins' import fixKeymapType from './20230619_fix_keymap_type' +import bigQueryOptions from './20230426_add_bigquery_options' const logger = createLogger('migrations')() @@ -45,7 +46,7 @@ const realMigrations = [ addSc, sslFiles, sslReject, pinned, addSort, createCreds, workspaceScoping, workspace2, addTabs, scWorkspace, systemTheme, serverCerts, socketPath, connectionOptions, keepaliveInterval, redshiftOptions, - createHiddenEntities, createHiddenSchemas, connectionPins, fixKeymapType + createHiddenEntities, createHiddenSchemas, connectionPins, fixKeymapType, bigQueryOptions ] // fixtures require the models @@ -84,7 +85,7 @@ export default class { console.log("running migrations") const runner = this.connection.connection.createQueryRunner() await runner.query(setupSQL) - for(let i = 0; i < migrations.length; i++){ + for(let i = 0; i < migrations.length; i++) { const migration = migrations[i] logger.debug(`Checking migration ${migration.name}`) if(migration.env && migration.env !== this.env) { diff --git a/apps/studio/tsconfig.json b/apps/studio/tsconfig.json index 1133a7ae1..d44a41660 100644 --- a/apps/studio/tsconfig.json +++ b/apps/studio/tsconfig.json @@ -31,8 +31,13 @@ "../../shared/src/**/*.ts", "../../shared/src/**/*.tsx", "../../shared/src/**/*.vue", + "src/*.js", + "src/**/*.js", ], "exclude": [ "node_modules", "dist", "dist_electron" - ] + ], + "sourceMapPathOverrides": { + "src/*": "${webRoot}/apps/studio/src/*" + }, } diff --git a/apps/studio/vue.config.js b/apps/studio/vue.config.js index eba8b6c46..20d515d08 100644 --- a/apps/studio/vue.config.js +++ b/apps/studio/vue.config.js @@ -173,6 +173,7 @@ module.exports = { } }, configureWebpack: { + devtool: 'source-map', plugins: [ new webpack.IgnorePlugin(/pg-native/, /pg/), new webpack.IgnorePlugin(/kerberos/, /cassandra-driver/), diff --git a/dev/docker_bigquery/data.sh b/dev/docker_bigquery/data.sh new file mode 100755 index 000000000..009cc69b0 --- /dev/null +++ b/dev/docker_bigquery/data.sh @@ -0,0 +1,21 @@ +#!/bin/bash +set -euxo pipefail + +# Install curl +# apt update +# apt install -y axel procps htop + +# # Change directory to /work +# cd /work + +# # Download and install Google cloud sdk +# export FILENAME=google-cloud-cli-430.0.0-linux-x86_64.tar.gz +# [ ! -f $FILENAME ] && axel -k https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/$FILENAME +# tar -xvzf $FILENAME +# /work/google-cloud-sdk/install.sh -q +# # Add gcloud to PATH +# source /work/google-cloud-sdk/path.bash.inc +# echo "source /work/google-cloud-sdk/path.bash.inc" >> ~/.bashrc + +# Start BigQuery emulator +/bin/bigquery-emulator --log-level=debug --project=bks --data-from-yaml=/data/world.yaml diff --git a/dev/docker_bigquery/world.yaml b/dev/docker_bigquery/world.yaml new file mode 100644 index 000000000..2b1591393 --- /dev/null +++ b/dev/docker_bigquery/world.yaml @@ -0,0 +1,28004 @@ +projects: +- id: bks + datasets: + - id: world + tables: + - id: city + columns: + - name: ID + type: INTEGER + mode: REQUIRED + - name: Name + type: STRING + mode: required # lower case + - name: CountryCode + type: STRING + mode: required + - name: District + type: STRING + mode: required + - name: Population + type: INTEGER + mode: required + data: + - ID: 1 + Name: Kabul + CountryCode: AFG + District: Kabol + Population: 1780000 + - ID: 2 + Name: Qandahar + CountryCode: AFG + District: Qandahar + Population: 237500 + - ID: 3 + Name: Herat + CountryCode: AFG + District: Herat + Population: 186800 + - ID: 4 + Name: Mazar-e-Sharif + CountryCode: AFG + District: Balkh + Population: 127800 + - ID: 5 + Name: Amsterdam + CountryCode: NLD + District: Noord-Holland + Population: 731200 + - ID: 6 + Name: Rotterdam + CountryCode: NLD + District: Zuid-Holland + Population: 593321 + - ID: 7 + Name: Haag + CountryCode: NLD + District: Zuid-Holland + Population: 440900 + - ID: 8 + Name: Utrecht + CountryCode: NLD + District: Utrecht + Population: 234323 + - ID: 9 + Name: Eindhoven + CountryCode: NLD + District: Noord-Brabant + Population: 201843 + - ID: 10 + Name: Tilburg + CountryCode: NLD + District: Noord-Brabant + Population: 193238 + - ID: 11 + Name: Groningen + CountryCode: NLD + District: Groningen + Population: 172701 + - ID: 12 + Name: Breda + CountryCode: NLD + District: Noord-Brabant + Population: 160398 + - ID: 13 + Name: Apeldoorn + CountryCode: NLD + District: Gelderland + Population: 153491 + - ID: 14 + Name: Nijmegen + CountryCode: NLD + District: Gelderland + Population: 152463 + - ID: 15 + Name: Enschede + CountryCode: NLD + District: Overijssel + Population: 149544 + - ID: 16 + Name: Haarlem + CountryCode: NLD + District: Noord-Holland + Population: 148772 + - ID: 17 + Name: Almere + CountryCode: NLD + District: Flevoland + Population: 142465 + - ID: 18 + Name: Arnhem + CountryCode: NLD + District: Gelderland + Population: 138020 + - ID: 19 + Name: Zaanstad + CountryCode: NLD + District: Noord-Holland + Population: 135621 + - ID: 20 + Name: ´s-Hertogenbosch + CountryCode: NLD + District: Noord-Brabant + Population: 129170 + - ID: 21 + Name: Amersfoort + CountryCode: NLD + District: Utrecht + Population: 126270 + - ID: 22 + Name: Maastricht + CountryCode: NLD + District: Limburg + Population: 122087 + - ID: 23 + Name: Dordrecht + CountryCode: NLD + District: Zuid-Holland + Population: 119811 + - ID: 24 + Name: Leiden + CountryCode: NLD + District: Zuid-Holland + Population: 117196 + - ID: 25 + Name: Haarlemmermeer + CountryCode: NLD + District: Noord-Holland + Population: 110722 + - ID: 26 + Name: Zoetermeer + CountryCode: NLD + District: Zuid-Holland + Population: 110214 + - ID: 27 + Name: Emmen + CountryCode: NLD + District: Drenthe + Population: 105853 + - ID: 28 + Name: Zwolle + CountryCode: NLD + District: Overijssel + Population: 105819 + - ID: 29 + Name: Ede + CountryCode: NLD + District: Gelderland + Population: 101574 + - ID: 30 + Name: Delft + CountryCode: NLD + District: Zuid-Holland + Population: 95268 + - ID: 31 + Name: Heerlen + CountryCode: NLD + District: Limburg + Population: 95052 + - ID: 32 + Name: Alkmaar + CountryCode: NLD + District: Noord-Holland + Population: 92713 + - ID: 33 + Name: Willemstad + CountryCode: ANT + District: Curaçao + Population: 2345 + - ID: 34 + Name: Tirana + CountryCode: ALB + District: Tirana + Population: 270000 + - ID: 35 + Name: Alger + CountryCode: DZA + District: Alger + Population: 2168000 + - ID: 36 + Name: Oran + CountryCode: DZA + District: Oran + Population: 609823 + - ID: 37 + Name: Constantine + CountryCode: DZA + District: Constantine + Population: 443727 + - ID: 38 + Name: Annaba + CountryCode: DZA + District: Annaba + Population: 222518 + - ID: 39 + Name: Batna + CountryCode: DZA + District: Batna + Population: 183377 + - ID: 40 + Name: Sétif + CountryCode: DZA + District: Sétif + Population: 179055 + - ID: 41 + Name: Sidi Bel Abbès + CountryCode: DZA + District: Sidi Bel Abbès + Population: 153106 + - ID: 42 + Name: Skikda + CountryCode: DZA + District: Skikda + Population: 128747 + - ID: 43 + Name: Biskra + CountryCode: DZA + District: Biskra + Population: 128281 + - ID: 44 + Name: Blida (el-Boulaida) + CountryCode: DZA + District: Blida + Population: 127284 + - ID: 45 + Name: Béjaïa + CountryCode: DZA + District: Béjaïa + Population: 117162 + - ID: 46 + Name: Mostaganem + CountryCode: DZA + District: Mostaganem + Population: 115212 + - ID: 47 + Name: Tébessa + CountryCode: DZA + District: Tébessa + Population: 112007 + - ID: 48 + Name: Tlemcen (Tilimsen) + CountryCode: DZA + District: Tlemcen + Population: 110242 + - ID: 49 + Name: Béchar + CountryCode: DZA + District: Béchar + Population: 107311 + - ID: 50 + Name: Tiaret + CountryCode: DZA + District: Tiaret + Population: 100118 + - ID: 51 + Name: Ech-Chleff (el-Asnam) + CountryCode: DZA + District: Chlef + Population: 96794 + - ID: 52 + Name: Ghardaïa + CountryCode: DZA + District: Ghardaïa + Population: 89415 + - ID: 53 + Name: Tafuna + CountryCode: ASM + District: Tutuila + Population: 5200 + - ID: 54 + Name: Fagatogo + CountryCode: ASM + District: Tutuila + Population: 2323 + - ID: 55 + Name: Andorra la Vella + CountryCode: AND + District: Andorra la Vella + Population: 21189 + - ID: 56 + Name: Luanda + CountryCode: AGO + District: Luanda + Population: 2022000 + - ID: 57 + Name: Huambo + CountryCode: AGO + District: Huambo + Population: 163100 + - ID: 58 + Name: Lobito + CountryCode: AGO + District: Benguela + Population: 130000 + - ID: 59 + Name: Benguela + CountryCode: AGO + District: Benguela + Population: 128300 + - ID: 60 + Name: Namibe + CountryCode: AGO + District: Namibe + Population: 118200 + - ID: 61 + Name: South Hill + CountryCode: AIA + District: – + Population: 961 + - ID: 62 + Name: The Valley + CountryCode: AIA + District: – + Population: 595 + - ID: 63 + Name: Saint John´s + CountryCode: ATG + District: St John + Population: 24000 + - ID: 64 + Name: Dubai + CountryCode: ARE + District: Dubai + Population: 669181 + - ID: 65 + Name: Abu Dhabi + CountryCode: ARE + District: Abu Dhabi + Population: 398695 + - ID: 66 + Name: Sharja + CountryCode: ARE + District: Sharja + Population: 320095 + - ID: 67 + Name: al-Ayn + CountryCode: ARE + District: Abu Dhabi + Population: 225970 + - ID: 68 + Name: Ajman + CountryCode: ARE + District: Ajman + Population: 114395 + - ID: 69 + Name: Buenos Aires + CountryCode: ARG + District: Distrito Federal + Population: 2982146 + - ID: 70 + Name: La Matanza + CountryCode: ARG + District: Buenos Aires + Population: 1266461 + - ID: 71 + Name: Córdoba + CountryCode: ARG + District: Córdoba + Population: 1157507 + - ID: 72 + Name: Rosario + CountryCode: ARG + District: Santa Fé + Population: 907718 + - ID: 73 + Name: Lomas de Zamora + CountryCode: ARG + District: Buenos Aires + Population: 622013 + - ID: 74 + Name: Quilmes + CountryCode: ARG + District: Buenos Aires + Population: 559249 + - ID: 75 + Name: Almirante Brown + CountryCode: ARG + District: Buenos Aires + Population: 538918 + - ID: 76 + Name: La Plata + CountryCode: ARG + District: Buenos Aires + Population: 521936 + - ID: 77 + Name: Mar del Plata + CountryCode: ARG + District: Buenos Aires + Population: 512880 + - ID: 78 + Name: San Miguel de Tucumán + CountryCode: ARG + District: Tucumán + Population: 470809 + - ID: 79 + Name: Lanús + CountryCode: ARG + District: Buenos Aires + Population: 469735 + - ID: 80 + Name: Merlo + CountryCode: ARG + District: Buenos Aires + Population: 463846 + - ID: 81 + Name: General San Martín + CountryCode: ARG + District: Buenos Aires + Population: 422542 + - ID: 82 + Name: Salta + CountryCode: ARG + District: Salta + Population: 367550 + - ID: 83 + Name: Moreno + CountryCode: ARG + District: Buenos Aires + Population: 356993 + - ID: 84 + Name: Santa Fé + CountryCode: ARG + District: Santa Fé + Population: 353063 + - ID: 85 + Name: Avellaneda + CountryCode: ARG + District: Buenos Aires + Population: 353046 + - ID: 86 + Name: Tres de Febrero + CountryCode: ARG + District: Buenos Aires + Population: 352311 + - ID: 87 + Name: Morón + CountryCode: ARG + District: Buenos Aires + Population: 349246 + - ID: 88 + Name: Florencio Varela + CountryCode: ARG + District: Buenos Aires + Population: 315432 + - ID: 89 + Name: San Isidro + CountryCode: ARG + District: Buenos Aires + Population: 306341 + - ID: 90 + Name: Tigre + CountryCode: ARG + District: Buenos Aires + Population: 296226 + - ID: 91 + Name: Malvinas Argentinas + CountryCode: ARG + District: Buenos Aires + Population: 290335 + - ID: 92 + Name: Vicente López + CountryCode: ARG + District: Buenos Aires + Population: 288341 + - ID: 93 + Name: Berazategui + CountryCode: ARG + District: Buenos Aires + Population: 276916 + - ID: 94 + Name: Corrientes + CountryCode: ARG + District: Corrientes + Population: 258103 + - ID: 95 + Name: San Miguel + CountryCode: ARG + District: Buenos Aires + Population: 248700 + - ID: 96 + Name: Bahía Blanca + CountryCode: ARG + District: Buenos Aires + Population: 239810 + - ID: 97 + Name: Esteban Echeverría + CountryCode: ARG + District: Buenos Aires + Population: 235760 + - ID: 98 + Name: Resistencia + CountryCode: ARG + District: Chaco + Population: 229212 + - ID: 99 + Name: José C. Paz + CountryCode: ARG + District: Buenos Aires + Population: 221754 + - ID: 100 + Name: Paraná + CountryCode: ARG + District: Entre Rios + Population: 207041 + - ID: 101 + Name: Godoy Cruz + CountryCode: ARG + District: Mendoza + Population: 206998 + - ID: 102 + Name: Posadas + CountryCode: ARG + District: Misiones + Population: 201273 + - ID: 103 + Name: Guaymallén + CountryCode: ARG + District: Mendoza + Population: 200595 + - ID: 104 + Name: Santiago del Estero + CountryCode: ARG + District: Santiago del Estero + Population: 189947 + - ID: 105 + Name: San Salvador de Jujuy + CountryCode: ARG + District: Jujuy + Population: 178748 + - ID: 106 + Name: Hurlingham + CountryCode: ARG + District: Buenos Aires + Population: 170028 + - ID: 107 + Name: Neuquén + CountryCode: ARG + District: Neuquén + Population: 167296 + - ID: 108 + Name: Ituzaingó + CountryCode: ARG + District: Buenos Aires + Population: 158197 + - ID: 109 + Name: San Fernando + CountryCode: ARG + District: Buenos Aires + Population: 153036 + - ID: 110 + Name: Formosa + CountryCode: ARG + District: Formosa + Population: 147636 + - ID: 111 + Name: Las Heras + CountryCode: ARG + District: Mendoza + Population: 145823 + - ID: 112 + Name: La Rioja + CountryCode: ARG + District: La Rioja + Population: 138117 + - ID: 113 + Name: San Fernando del Valle de Cata + CountryCode: ARG + District: Catamarca + Population: 134935 + - ID: 114 + Name: Río Cuarto + CountryCode: ARG + District: Córdoba + Population: 134355 + - ID: 115 + Name: Comodoro Rivadavia + CountryCode: ARG + District: Chubut + Population: 124104 + - ID: 116 + Name: Mendoza + CountryCode: ARG + District: Mendoza + Population: 123027 + - ID: 117 + Name: San Nicolás de los Arroyos + CountryCode: ARG + District: Buenos Aires + Population: 119302 + - ID: 118 + Name: San Juan + CountryCode: ARG + District: San Juan + Population: 119152 + - ID: 119 + Name: Escobar + CountryCode: ARG + District: Buenos Aires + Population: 116675 + - ID: 120 + Name: Concordia + CountryCode: ARG + District: Entre Rios + Population: 116485 + - ID: 121 + Name: Pilar + CountryCode: ARG + District: Buenos Aires + Population: 113428 + - ID: 122 + Name: San Luis + CountryCode: ARG + District: San Luis + Population: 110136 + - ID: 123 + Name: Ezeiza + CountryCode: ARG + District: Buenos Aires + Population: 99578 + - ID: 124 + Name: San Rafael + CountryCode: ARG + District: Mendoza + Population: 94651 + - ID: 125 + Name: Tandil + CountryCode: ARG + District: Buenos Aires + Population: 91101 + - ID: 126 + Name: Yerevan + CountryCode: ARM + District: Yerevan + Population: 1248700 + - ID: 127 + Name: Gjumri + CountryCode: ARM + District: Širak + Population: 211700 + - ID: 128 + Name: Vanadzor + CountryCode: ARM + District: Lori + Population: 172700 + - ID: 129 + Name: Oranjestad + CountryCode: ABW + District: – + Population: 29034 + - ID: 130 + Name: Sydney + CountryCode: AUS + District: New South Wales + Population: 3276207 + - ID: 131 + Name: Melbourne + CountryCode: AUS + District: Victoria + Population: 2865329 + - ID: 132 + Name: Brisbane + CountryCode: AUS + District: Queensland + Population: 1291117 + - ID: 133 + Name: Perth + CountryCode: AUS + District: West Australia + Population: 1096829 + - ID: 134 + Name: Adelaide + CountryCode: AUS + District: South Australia + Population: 978100 + - ID: 135 + Name: Canberra + CountryCode: AUS + District: Capital Region + Population: 322723 + - ID: 136 + Name: Gold Coast + CountryCode: AUS + District: Queensland + Population: 311932 + - ID: 137 + Name: Newcastle + CountryCode: AUS + District: New South Wales + Population: 270324 + - ID: 138 + Name: Central Coast + CountryCode: AUS + District: New South Wales + Population: 227657 + - ID: 139 + Name: Wollongong + CountryCode: AUS + District: New South Wales + Population: 219761 + - ID: 140 + Name: Hobart + CountryCode: AUS + District: Tasmania + Population: 126118 + - ID: 141 + Name: Geelong + CountryCode: AUS + District: Victoria + Population: 125382 + - ID: 142 + Name: Townsville + CountryCode: AUS + District: Queensland + Population: 109914 + - ID: 143 + Name: Cairns + CountryCode: AUS + District: Queensland + Population: 92273 + - ID: 144 + Name: Baku + CountryCode: AZE + District: Baki + Population: 1787800 + - ID: 145 + Name: Gäncä + CountryCode: AZE + District: Gäncä + Population: 299300 + - ID: 146 + Name: Sumqayit + CountryCode: AZE + District: Sumqayit + Population: 283000 + - ID: 147 + Name: Mingäçevir + CountryCode: AZE + District: Mingäçevir + Population: 93900 + - ID: 148 + Name: Nassau + CountryCode: BHS + District: New Providence + Population: 172000 + - ID: 149 + Name: al-Manama + CountryCode: BHR + District: al-Manama + Population: 148000 + - ID: 150 + Name: Dhaka + CountryCode: BGD + District: Dhaka + Population: 3612850 + - ID: 151 + Name: Chittagong + CountryCode: BGD + District: Chittagong + Population: 1392860 + - ID: 152 + Name: Khulna + CountryCode: BGD + District: Khulna + Population: 663340 + - ID: 153 + Name: Rajshahi + CountryCode: BGD + District: Rajshahi + Population: 294056 + - ID: 154 + Name: Narayanganj + CountryCode: BGD + District: Dhaka + Population: 202134 + - ID: 155 + Name: Rangpur + CountryCode: BGD + District: Rajshahi + Population: 191398 + - ID: 156 + Name: Mymensingh + CountryCode: BGD + District: Dhaka + Population: 188713 + - ID: 157 + Name: Barisal + CountryCode: BGD + District: Barisal + Population: 170232 + - ID: 158 + Name: Tungi + CountryCode: BGD + District: Dhaka + Population: 168702 + - ID: 159 + Name: Jessore + CountryCode: BGD + District: Khulna + Population: 139710 + - ID: 160 + Name: Comilla + CountryCode: BGD + District: Chittagong + Population: 135313 + - ID: 161 + Name: Nawabganj + CountryCode: BGD + District: Rajshahi + Population: 130577 + - ID: 162 + Name: Dinajpur + CountryCode: BGD + District: Rajshahi + Population: 127815 + - ID: 163 + Name: Bogra + CountryCode: BGD + District: Rajshahi + Population: 120170 + - ID: 164 + Name: Sylhet + CountryCode: BGD + District: Sylhet + Population: 117396 + - ID: 165 + Name: Brahmanbaria + CountryCode: BGD + District: Chittagong + Population: 109032 + - ID: 166 + Name: Tangail + CountryCode: BGD + District: Dhaka + Population: 106004 + - ID: 167 + Name: Jamalpur + CountryCode: BGD + District: Dhaka + Population: 103556 + - ID: 168 + Name: Pabna + CountryCode: BGD + District: Rajshahi + Population: 103277 + - ID: 169 + Name: Naogaon + CountryCode: BGD + District: Rajshahi + Population: 101266 + - ID: 170 + Name: Sirajganj + CountryCode: BGD + District: Rajshahi + Population: 99669 + - ID: 171 + Name: Narsinghdi + CountryCode: BGD + District: Dhaka + Population: 98342 + - ID: 172 + Name: Saidpur + CountryCode: BGD + District: Rajshahi + Population: 96777 + - ID: 173 + Name: Gazipur + CountryCode: BGD + District: Dhaka + Population: 96717 + - ID: 174 + Name: Bridgetown + CountryCode: BRB + District: St Michael + Population: 6070 + - ID: 175 + Name: Antwerpen + CountryCode: BEL + District: Antwerpen + Population: 446525 + - ID: 176 + Name: Gent + CountryCode: BEL + District: East Flanderi + Population: 224180 + - ID: 177 + Name: Charleroi + CountryCode: BEL + District: Hainaut + Population: 200827 + - ID: 178 + Name: Liège + CountryCode: BEL + District: Liège + Population: 185639 + - ID: 179 + Name: Bruxelles [Brussel] + CountryCode: BEL + District: Bryssel + Population: 133859 + - ID: 180 + Name: Brugge + CountryCode: BEL + District: West Flanderi + Population: 116246 + - ID: 181 + Name: Schaerbeek + CountryCode: BEL + District: Bryssel + Population: 105692 + - ID: 182 + Name: Namur + CountryCode: BEL + District: Namur + Population: 105419 + - ID: 183 + Name: Mons + CountryCode: BEL + District: Hainaut + Population: 90935 + - ID: 184 + Name: Belize City + CountryCode: BLZ + District: Belize City + Population: 55810 + - ID: 185 + Name: Belmopan + CountryCode: BLZ + District: Cayo + Population: 7105 + - ID: 186 + Name: Cotonou + CountryCode: BEN + District: Atlantique + Population: 536827 + - ID: 187 + Name: Porto-Novo + CountryCode: BEN + District: Ouémé + Population: 194000 + - ID: 188 + Name: Djougou + CountryCode: BEN + District: Atacora + Population: 134099 + - ID: 189 + Name: Parakou + CountryCode: BEN + District: Borgou + Population: 103577 + - ID: 190 + Name: Saint George + CountryCode: BMU + District: Saint George´s + Population: 1800 + - ID: 191 + Name: Hamilton + CountryCode: BMU + District: Hamilton + Population: 1200 + - ID: 192 + Name: Thimphu + CountryCode: BTN + District: Thimphu + Population: 22000 + - ID: 193 + Name: Santa Cruz de la Sierra + CountryCode: BOL + District: Santa Cruz + Population: 935361 + - ID: 194 + Name: La Paz + CountryCode: BOL + District: La Paz + Population: 758141 + - ID: 195 + Name: El Alto + CountryCode: BOL + District: La Paz + Population: 534466 + - ID: 196 + Name: Cochabamba + CountryCode: BOL + District: Cochabamba + Population: 482800 + - ID: 197 + Name: Oruro + CountryCode: BOL + District: Oruro + Population: 223553 + - ID: 198 + Name: Sucre + CountryCode: BOL + District: Chuquisaca + Population: 178426 + - ID: 199 + Name: Potosí + CountryCode: BOL + District: Potosí + Population: 140642 + - ID: 200 + Name: Tarija + CountryCode: BOL + District: Tarija + Population: 125255 + - ID: 201 + Name: Sarajevo + CountryCode: BIH + District: Federaatio + Population: 360000 + - ID: 202 + Name: Banja Luka + CountryCode: BIH + District: Republika Srpska + Population: 143079 + - ID: 203 + Name: Zenica + CountryCode: BIH + District: Federaatio + Population: 96027 + - ID: 204 + Name: Gaborone + CountryCode: BWA + District: Gaborone + Population: 213017 + - ID: 205 + Name: Francistown + CountryCode: BWA + District: Francistown + Population: 101805 + - ID: 206 + Name: São Paulo + CountryCode: BRA + District: São Paulo + Population: 9968485 + - ID: 207 + Name: Rio de Janeiro + CountryCode: BRA + District: Rio de Janeiro + Population: 5598953 + - ID: 208 + Name: Salvador + CountryCode: BRA + District: Bahia + Population: 2302832 + - ID: 209 + Name: Belo Horizonte + CountryCode: BRA + District: Minas Gerais + Population: 2139125 + - ID: 210 + Name: Fortaleza + CountryCode: BRA + District: Ceará + Population: 2097757 + - ID: 211 + Name: Brasília + CountryCode: BRA + District: Distrito Federal + Population: 1969868 + - ID: 212 + Name: Curitiba + CountryCode: BRA + District: Paraná + Population: 1584232 + - ID: 213 + Name: Recife + CountryCode: BRA + District: Pernambuco + Population: 1378087 + - ID: 214 + Name: Porto Alegre + CountryCode: BRA + District: Rio Grande do Sul + Population: 1314032 + - ID: 215 + Name: Manaus + CountryCode: BRA + District: Amazonas + Population: 1255049 + - ID: 216 + Name: Belém + CountryCode: BRA + District: Pará + Population: 1186926 + - ID: 217 + Name: Guarulhos + CountryCode: BRA + District: São Paulo + Population: 1095874 + - ID: 218 + Name: Goiânia + CountryCode: BRA + District: Goiás + Population: 1056330 + - ID: 219 + Name: Campinas + CountryCode: BRA + District: São Paulo + Population: 950043 + - ID: 220 + Name: São Gonçalo + CountryCode: BRA + District: Rio de Janeiro + Population: 869254 + - ID: 221 + Name: Nova Iguaçu + CountryCode: BRA + District: Rio de Janeiro + Population: 862225 + - ID: 222 + Name: São Luís + CountryCode: BRA + District: Maranhão + Population: 837588 + - ID: 223 + Name: Maceió + CountryCode: BRA + District: Alagoas + Population: 786288 + - ID: 224 + Name: Duque de Caxias + CountryCode: BRA + District: Rio de Janeiro + Population: 746758 + - ID: 225 + Name: São Bernardo do Campo + CountryCode: BRA + District: São Paulo + Population: 723132 + - ID: 226 + Name: Teresina + CountryCode: BRA + District: Piauí + Population: 691942 + - ID: 227 + Name: Natal + CountryCode: BRA + District: Rio Grande do Norte + Population: 688955 + - ID: 228 + Name: Osasco + CountryCode: BRA + District: São Paulo + Population: 659604 + - ID: 229 + Name: Campo Grande + CountryCode: BRA + District: Mato Grosso do Sul + Population: 649593 + - ID: 230 + Name: Santo André + CountryCode: BRA + District: São Paulo + Population: 630073 + - ID: 231 + Name: João Pessoa + CountryCode: BRA + District: Paraíba + Population: 584029 + - ID: 232 + Name: Jaboatão dos Guararapes + CountryCode: BRA + District: Pernambuco + Population: 558680 + - ID: 233 + Name: Contagem + CountryCode: BRA + District: Minas Gerais + Population: 520801 + - ID: 234 + Name: São José dos Campos + CountryCode: BRA + District: São Paulo + Population: 515553 + - ID: 235 + Name: Uberlândia + CountryCode: BRA + District: Minas Gerais + Population: 487222 + - ID: 236 + Name: Feira de Santana + CountryCode: BRA + District: Bahia + Population: 479992 + - ID: 237 + Name: Ribeirão Preto + CountryCode: BRA + District: São Paulo + Population: 473276 + - ID: 238 + Name: Sorocaba + CountryCode: BRA + District: São Paulo + Population: 466823 + - ID: 239 + Name: Niterói + CountryCode: BRA + District: Rio de Janeiro + Population: 459884 + - ID: 240 + Name: Cuiabá + CountryCode: BRA + District: Mato Grosso + Population: 453813 + - ID: 241 + Name: Juiz de Fora + CountryCode: BRA + District: Minas Gerais + Population: 450288 + - ID: 242 + Name: Aracaju + CountryCode: BRA + District: Sergipe + Population: 445555 + - ID: 243 + Name: São João de Meriti + CountryCode: BRA + District: Rio de Janeiro + Population: 440052 + - ID: 244 + Name: Londrina + CountryCode: BRA + District: Paraná + Population: 432257 + - ID: 245 + Name: Joinville + CountryCode: BRA + District: Santa Catarina + Population: 428011 + - ID: 246 + Name: Belford Roxo + CountryCode: BRA + District: Rio de Janeiro + Population: 425194 + - ID: 247 + Name: Santos + CountryCode: BRA + District: São Paulo + Population: 408748 + - ID: 248 + Name: Ananindeua + CountryCode: BRA + District: Pará + Population: 400940 + - ID: 249 + Name: Campos dos Goytacazes + CountryCode: BRA + District: Rio de Janeiro + Population: 398418 + - ID: 250 + Name: Mauá + CountryCode: BRA + District: São Paulo + Population: 375055 + - ID: 251 + Name: Carapicuíba + CountryCode: BRA + District: São Paulo + Population: 357552 + - ID: 252 + Name: Olinda + CountryCode: BRA + District: Pernambuco + Population: 354732 + - ID: 253 + Name: Campina Grande + CountryCode: BRA + District: Paraíba + Population: 352497 + - ID: 254 + Name: São José do Rio Preto + CountryCode: BRA + District: São Paulo + Population: 351944 + - ID: 255 + Name: Caxias do Sul + CountryCode: BRA + District: Rio Grande do Sul + Population: 349581 + - ID: 256 + Name: Moji das Cruzes + CountryCode: BRA + District: São Paulo + Population: 339194 + - ID: 257 + Name: Diadema + CountryCode: BRA + District: São Paulo + Population: 335078 + - ID: 258 + Name: Aparecida de Goiânia + CountryCode: BRA + District: Goiás + Population: 324662 + - ID: 259 + Name: Piracicaba + CountryCode: BRA + District: São Paulo + Population: 319104 + - ID: 260 + Name: Cariacica + CountryCode: BRA + District: Espírito Santo + Population: 319033 + - ID: 261 + Name: Vila Velha + CountryCode: BRA + District: Espírito Santo + Population: 318758 + - ID: 262 + Name: Pelotas + CountryCode: BRA + District: Rio Grande do Sul + Population: 315415 + - ID: 263 + Name: Bauru + CountryCode: BRA + District: São Paulo + Population: 313670 + - ID: 264 + Name: Porto Velho + CountryCode: BRA + District: Rondônia + Population: 309750 + - ID: 265 + Name: Serra + CountryCode: BRA + District: Espírito Santo + Population: 302666 + - ID: 266 + Name: Betim + CountryCode: BRA + District: Minas Gerais + Population: 302108 + - ID: 267 + Name: Jundíaí + CountryCode: BRA + District: São Paulo + Population: 296127 + - ID: 268 + Name: Canoas + CountryCode: BRA + District: Rio Grande do Sul + Population: 294125 + - ID: 269 + Name: Franca + CountryCode: BRA + District: São Paulo + Population: 290139 + - ID: 270 + Name: São Vicente + CountryCode: BRA + District: São Paulo + Population: 286848 + - ID: 271 + Name: Maringá + CountryCode: BRA + District: Paraná + Population: 286461 + - ID: 272 + Name: Montes Claros + CountryCode: BRA + District: Minas Gerais + Population: 286058 + - ID: 273 + Name: Anápolis + CountryCode: BRA + District: Goiás + Population: 282197 + - ID: 274 + Name: Florianópolis + CountryCode: BRA + District: Santa Catarina + Population: 281928 + - ID: 275 + Name: Petrópolis + CountryCode: BRA + District: Rio de Janeiro + Population: 279183 + - ID: 276 + Name: Itaquaquecetuba + CountryCode: BRA + District: São Paulo + Population: 270874 + - ID: 277 + Name: Vitória + CountryCode: BRA + District: Espírito Santo + Population: 270626 + - ID: 278 + Name: Ponta Grossa + CountryCode: BRA + District: Paraná + Population: 268013 + - ID: 279 + Name: Rio Branco + CountryCode: BRA + District: Acre + Population: 259537 + - ID: 280 + Name: Foz do Iguaçu + CountryCode: BRA + District: Paraná + Population: 259425 + - ID: 281 + Name: Macapá + CountryCode: BRA + District: Amapá + Population: 256033 + - ID: 282 + Name: Ilhéus + CountryCode: BRA + District: Bahia + Population: 254970 + - ID: 283 + Name: Vitória da Conquista + CountryCode: BRA + District: Bahia + Population: 253587 + - ID: 284 + Name: Uberaba + CountryCode: BRA + District: Minas Gerais + Population: 249225 + - ID: 285 + Name: Paulista + CountryCode: BRA + District: Pernambuco + Population: 248473 + - ID: 286 + Name: Limeira + CountryCode: BRA + District: São Paulo + Population: 245497 + - ID: 287 + Name: Blumenau + CountryCode: BRA + District: Santa Catarina + Population: 244379 + - ID: 288 + Name: Caruaru + CountryCode: BRA + District: Pernambuco + Population: 244247 + - ID: 289 + Name: Santarém + CountryCode: BRA + District: Pará + Population: 241771 + - ID: 290 + Name: Volta Redonda + CountryCode: BRA + District: Rio de Janeiro + Population: 240315 + - ID: 291 + Name: Novo Hamburgo + CountryCode: BRA + District: Rio Grande do Sul + Population: 239940 + - ID: 292 + Name: Caucaia + CountryCode: BRA + District: Ceará + Population: 238738 + - ID: 293 + Name: Santa Maria + CountryCode: BRA + District: Rio Grande do Sul + Population: 238473 + - ID: 294 + Name: Cascavel + CountryCode: BRA + District: Paraná + Population: 237510 + - ID: 295 + Name: Guarujá + CountryCode: BRA + District: São Paulo + Population: 237206 + - ID: 296 + Name: Ribeirão das Neves + CountryCode: BRA + District: Minas Gerais + Population: 232685 + - ID: 297 + Name: Governador Valadares + CountryCode: BRA + District: Minas Gerais + Population: 231724 + - ID: 298 + Name: Taubaté + CountryCode: BRA + District: São Paulo + Population: 229130 + - ID: 299 + Name: Imperatriz + CountryCode: BRA + District: Maranhão + Population: 224564 + - ID: 300 + Name: Gravataí + CountryCode: BRA + District: Rio Grande do Sul + Population: 223011 + - ID: 301 + Name: Embu + CountryCode: BRA + District: São Paulo + Population: 222223 + - ID: 302 + Name: Mossoró + CountryCode: BRA + District: Rio Grande do Norte + Population: 214901 + - ID: 303 + Name: Várzea Grande + CountryCode: BRA + District: Mato Grosso + Population: 214435 + - ID: 304 + Name: Petrolina + CountryCode: BRA + District: Pernambuco + Population: 210540 + - ID: 305 + Name: Barueri + CountryCode: BRA + District: São Paulo + Population: 208426 + - ID: 306 + Name: Viamão + CountryCode: BRA + District: Rio Grande do Sul + Population: 207557 + - ID: 307 + Name: Ipatinga + CountryCode: BRA + District: Minas Gerais + Population: 206338 + - ID: 308 + Name: Juazeiro + CountryCode: BRA + District: Bahia + Population: 201073 + - ID: 309 + Name: Juazeiro do Norte + CountryCode: BRA + District: Ceará + Population: 199636 + - ID: 310 + Name: Taboão da Serra + CountryCode: BRA + District: São Paulo + Population: 197550 + - ID: 311 + Name: São José dos Pinhais + CountryCode: BRA + District: Paraná + Population: 196884 + - ID: 312 + Name: Magé + CountryCode: BRA + District: Rio de Janeiro + Population: 196147 + - ID: 313 + Name: Suzano + CountryCode: BRA + District: São Paulo + Population: 195434 + - ID: 314 + Name: São Leopoldo + CountryCode: BRA + District: Rio Grande do Sul + Population: 189258 + - ID: 315 + Name: Marília + CountryCode: BRA + District: São Paulo + Population: 188691 + - ID: 316 + Name: São Carlos + CountryCode: BRA + District: São Paulo + Population: 187122 + - ID: 317 + Name: Sumaré + CountryCode: BRA + District: São Paulo + Population: 186205 + - ID: 318 + Name: Presidente Prudente + CountryCode: BRA + District: São Paulo + Population: 185340 + - ID: 319 + Name: Divinópolis + CountryCode: BRA + District: Minas Gerais + Population: 185047 + - ID: 320 + Name: Sete Lagoas + CountryCode: BRA + District: Minas Gerais + Population: 182984 + - ID: 321 + Name: Rio Grande + CountryCode: BRA + District: Rio Grande do Sul + Population: 182222 + - ID: 322 + Name: Itabuna + CountryCode: BRA + District: Bahia + Population: 182148 + - ID: 323 + Name: Jequié + CountryCode: BRA + District: Bahia + Population: 179128 + - ID: 324 + Name: Arapiraca + CountryCode: BRA + District: Alagoas + Population: 178988 + - ID: 325 + Name: Colombo + CountryCode: BRA + District: Paraná + Population: 177764 + - ID: 326 + Name: Americana + CountryCode: BRA + District: São Paulo + Population: 177409 + - ID: 327 + Name: Alvorada + CountryCode: BRA + District: Rio Grande do Sul + Population: 175574 + - ID: 328 + Name: Araraquara + CountryCode: BRA + District: São Paulo + Population: 174381 + - ID: 329 + Name: Itaboraí + CountryCode: BRA + District: Rio de Janeiro + Population: 173977 + - ID: 330 + Name: Santa Bárbara d´Oeste + CountryCode: BRA + District: São Paulo + Population: 171657 + - ID: 331 + Name: Nova Friburgo + CountryCode: BRA + District: Rio de Janeiro + Population: 170697 + - ID: 332 + Name: Jacareí + CountryCode: BRA + District: São Paulo + Population: 170356 + - ID: 333 + Name: Araçatuba + CountryCode: BRA + District: São Paulo + Population: 169303 + - ID: 334 + Name: Barra Mansa + CountryCode: BRA + District: Rio de Janeiro + Population: 168953 + - ID: 335 + Name: Praia Grande + CountryCode: BRA + District: São Paulo + Population: 168434 + - ID: 336 + Name: Marabá + CountryCode: BRA + District: Pará + Population: 167795 + - ID: 337 + Name: Criciúma + CountryCode: BRA + District: Santa Catarina + Population: 167661 + - ID: 338 + Name: Boa Vista + CountryCode: BRA + District: Roraima + Population: 167185 + - ID: 339 + Name: Passo Fundo + CountryCode: BRA + District: Rio Grande do Sul + Population: 166343 + - ID: 340 + Name: Dourados + CountryCode: BRA + District: Mato Grosso do Sul + Population: 164716 + - ID: 341 + Name: Santa Luzia + CountryCode: BRA + District: Minas Gerais + Population: 164704 + - ID: 342 + Name: Rio Claro + CountryCode: BRA + District: São Paulo + Population: 163551 + - ID: 343 + Name: Maracanaú + CountryCode: BRA + District: Ceará + Population: 162022 + - ID: 344 + Name: Guarapuava + CountryCode: BRA + District: Paraná + Population: 160510 + - ID: 345 + Name: Rondonópolis + CountryCode: BRA + District: Mato Grosso + Population: 155115 + - ID: 346 + Name: São José + CountryCode: BRA + District: Santa Catarina + Population: 155105 + - ID: 347 + Name: Cachoeiro de Itapemirim + CountryCode: BRA + District: Espírito Santo + Population: 155024 + - ID: 348 + Name: Nilópolis + CountryCode: BRA + District: Rio de Janeiro + Population: 153383 + - ID: 349 + Name: Itapevi + CountryCode: BRA + District: São Paulo + Population: 150664 + - ID: 350 + Name: Cabo de Santo Agostinho + CountryCode: BRA + District: Pernambuco + Population: 149964 + - ID: 351 + Name: Camaçari + CountryCode: BRA + District: Bahia + Population: 149146 + - ID: 352 + Name: Sobral + CountryCode: BRA + District: Ceará + Population: 146005 + - ID: 353 + Name: Itajaí + CountryCode: BRA + District: Santa Catarina + Population: 145197 + - ID: 354 + Name: Chapecó + CountryCode: BRA + District: Santa Catarina + Population: 144158 + - ID: 355 + Name: Cotia + CountryCode: BRA + District: São Paulo + Population: 140042 + - ID: 356 + Name: Lages + CountryCode: BRA + District: Santa Catarina + Population: 139570 + - ID: 357 + Name: Ferraz de Vasconcelos + CountryCode: BRA + District: São Paulo + Population: 139283 + - ID: 358 + Name: Indaiatuba + CountryCode: BRA + District: São Paulo + Population: 135968 + - ID: 359 + Name: Hortolândia + CountryCode: BRA + District: São Paulo + Population: 135755 + - ID: 360 + Name: Caxias + CountryCode: BRA + District: Maranhão + Population: 133980 + - ID: 361 + Name: São Caetano do Sul + CountryCode: BRA + District: São Paulo + Population: 133321 + - ID: 362 + Name: Itu + CountryCode: BRA + District: São Paulo + Population: 132736 + - ID: 363 + Name: Nossa Senhora do Socorro + CountryCode: BRA + District: Sergipe + Population: 131351 + - ID: 364 + Name: Parnaíba + CountryCode: BRA + District: Piauí + Population: 129756 + - ID: 365 + Name: Poços de Caldas + CountryCode: BRA + District: Minas Gerais + Population: 129683 + - ID: 366 + Name: Teresópolis + CountryCode: BRA + District: Rio de Janeiro + Population: 128079 + - ID: 367 + Name: Barreiras + CountryCode: BRA + District: Bahia + Population: 127801 + - ID: 368 + Name: Castanhal + CountryCode: BRA + District: Pará + Population: 127634 + - ID: 369 + Name: Alagoinhas + CountryCode: BRA + District: Bahia + Population: 126820 + - ID: 370 + Name: Itapecerica da Serra + CountryCode: BRA + District: São Paulo + Population: 126672 + - ID: 371 + Name: Uruguaiana + CountryCode: BRA + District: Rio Grande do Sul + Population: 126305 + - ID: 372 + Name: Paranaguá + CountryCode: BRA + District: Paraná + Population: 126076 + - ID: 373 + Name: Ibirité + CountryCode: BRA + District: Minas Gerais + Population: 125982 + - ID: 374 + Name: Timon + CountryCode: BRA + District: Maranhão + Population: 125812 + - ID: 375 + Name: Luziânia + CountryCode: BRA + District: Goiás + Population: 125597 + - ID: 376 + Name: Macaé + CountryCode: BRA + District: Rio de Janeiro + Population: 125597 + - ID: 377 + Name: Teófilo Otoni + CountryCode: BRA + District: Minas Gerais + Population: 124489 + - ID: 378 + Name: Moji-Guaçu + CountryCode: BRA + District: São Paulo + Population: 123782 + - ID: 379 + Name: Palmas + CountryCode: BRA + District: Tocantins + Population: 121919 + - ID: 380 + Name: Pindamonhangaba + CountryCode: BRA + District: São Paulo + Population: 121904 + - ID: 381 + Name: Francisco Morato + CountryCode: BRA + District: São Paulo + Population: 121197 + - ID: 382 + Name: Bagé + CountryCode: BRA + District: Rio Grande do Sul + Population: 120793 + - ID: 383 + Name: Sapucaia do Sul + CountryCode: BRA + District: Rio Grande do Sul + Population: 120217 + - ID: 384 + Name: Cabo Frio + CountryCode: BRA + District: Rio de Janeiro + Population: 119503 + - ID: 385 + Name: Itapetininga + CountryCode: BRA + District: São Paulo + Population: 119391 + - ID: 386 + Name: Patos de Minas + CountryCode: BRA + District: Minas Gerais + Population: 119262 + - ID: 387 + Name: Camaragibe + CountryCode: BRA + District: Pernambuco + Population: 118968 + - ID: 388 + Name: Bragança Paulista + CountryCode: BRA + District: São Paulo + Population: 116929 + - ID: 389 + Name: Queimados + CountryCode: BRA + District: Rio de Janeiro + Population: 115020 + - ID: 390 + Name: Araguaína + CountryCode: BRA + District: Tocantins + Population: 114948 + - ID: 391 + Name: Garanhuns + CountryCode: BRA + District: Pernambuco + Population: 114603 + - ID: 392 + Name: Vitória de Santo Antão + CountryCode: BRA + District: Pernambuco + Population: 113595 + - ID: 393 + Name: Santa Rita + CountryCode: BRA + District: Paraíba + Population: 113135 + - ID: 394 + Name: Barbacena + CountryCode: BRA + District: Minas Gerais + Population: 113079 + - ID: 395 + Name: Abaetetuba + CountryCode: BRA + District: Pará + Population: 111258 + - ID: 396 + Name: Jaú + CountryCode: BRA + District: São Paulo + Population: 109965 + - ID: 397 + Name: Lauro de Freitas + CountryCode: BRA + District: Bahia + Population: 109236 + - ID: 398 + Name: Franco da Rocha + CountryCode: BRA + District: São Paulo + Population: 108964 + - ID: 399 + Name: Teixeira de Freitas + CountryCode: BRA + District: Bahia + Population: 108441 + - ID: 400 + Name: Varginha + CountryCode: BRA + District: Minas Gerais + Population: 108314 + - ID: 401 + Name: Ribeirão Pires + CountryCode: BRA + District: São Paulo + Population: 108121 + - ID: 402 + Name: Sabará + CountryCode: BRA + District: Minas Gerais + Population: 107781 + - ID: 403 + Name: Catanduva + CountryCode: BRA + District: São Paulo + Population: 107761 + - ID: 404 + Name: Rio Verde + CountryCode: BRA + District: Goiás + Population: 107755 + - ID: 405 + Name: Botucatu + CountryCode: BRA + District: São Paulo + Population: 107663 + - ID: 406 + Name: Colatina + CountryCode: BRA + District: Espírito Santo + Population: 107354 + - ID: 407 + Name: Santa Cruz do Sul + CountryCode: BRA + District: Rio Grande do Sul + Population: 106734 + - ID: 408 + Name: Linhares + CountryCode: BRA + District: Espírito Santo + Population: 106278 + - ID: 409 + Name: Apucarana + CountryCode: BRA + District: Paraná + Population: 105114 + - ID: 410 + Name: Barretos + CountryCode: BRA + District: São Paulo + Population: 104156 + - ID: 411 + Name: Guaratinguetá + CountryCode: BRA + District: São Paulo + Population: 103433 + - ID: 412 + Name: Cachoeirinha + CountryCode: BRA + District: Rio Grande do Sul + Population: 103240 + - ID: 413 + Name: Codó + CountryCode: BRA + District: Maranhão + Population: 103153 + - ID: 414 + Name: Jaraguá do Sul + CountryCode: BRA + District: Santa Catarina + Population: 102580 + - ID: 415 + Name: Cubatão + CountryCode: BRA + District: São Paulo + Population: 102372 + - ID: 416 + Name: Itabira + CountryCode: BRA + District: Minas Gerais + Population: 102217 + - ID: 417 + Name: Itaituba + CountryCode: BRA + District: Pará + Population: 101320 + - ID: 418 + Name: Araras + CountryCode: BRA + District: São Paulo + Population: 101046 + - ID: 419 + Name: Resende + CountryCode: BRA + District: Rio de Janeiro + Population: 100627 + - ID: 420 + Name: Atibaia + CountryCode: BRA + District: São Paulo + Population: 100356 + - ID: 421 + Name: Pouso Alegre + CountryCode: BRA + District: Minas Gerais + Population: 100028 + - ID: 422 + Name: Toledo + CountryCode: BRA + District: Paraná + Population: 99387 + - ID: 423 + Name: Crato + CountryCode: BRA + District: Ceará + Population: 98965 + - ID: 424 + Name: Passos + CountryCode: BRA + District: Minas Gerais + Population: 98570 + - ID: 425 + Name: Araguari + CountryCode: BRA + District: Minas Gerais + Population: 98399 + - ID: 426 + Name: São José de Ribamar + CountryCode: BRA + District: Maranhão + Population: 98318 + - ID: 427 + Name: Pinhais + CountryCode: BRA + District: Paraná + Population: 98198 + - ID: 428 + Name: Sertãozinho + CountryCode: BRA + District: São Paulo + Population: 98140 + - ID: 429 + Name: Conselheiro Lafaiete + CountryCode: BRA + District: Minas Gerais + Population: 97507 + - ID: 430 + Name: Paulo Afonso + CountryCode: BRA + District: Bahia + Population: 97291 + - ID: 431 + Name: Angra dos Reis + CountryCode: BRA + District: Rio de Janeiro + Population: 96864 + - ID: 432 + Name: Eunápolis + CountryCode: BRA + District: Bahia + Population: 96610 + - ID: 433 + Name: Salto + CountryCode: BRA + District: São Paulo + Population: 96348 + - ID: 434 + Name: Ourinhos + CountryCode: BRA + District: São Paulo + Population: 96291 + - ID: 435 + Name: Parnamirim + CountryCode: BRA + District: Rio Grande do Norte + Population: 96210 + - ID: 436 + Name: Jacobina + CountryCode: BRA + District: Bahia + Population: 96131 + - ID: 437 + Name: Coronel Fabriciano + CountryCode: BRA + District: Minas Gerais + Population: 95933 + - ID: 438 + Name: Birigui + CountryCode: BRA + District: São Paulo + Population: 94685 + - ID: 439 + Name: Tatuí + CountryCode: BRA + District: São Paulo + Population: 93897 + - ID: 440 + Name: Ji-Paraná + CountryCode: BRA + District: Rondônia + Population: 93346 + - ID: 441 + Name: Bacabal + CountryCode: BRA + District: Maranhão + Population: 93121 + - ID: 442 + Name: Cametá + CountryCode: BRA + District: Pará + Population: 92779 + - ID: 443 + Name: Guaíba + CountryCode: BRA + District: Rio Grande do Sul + Population: 92224 + - ID: 444 + Name: São Lourenço da Mata + CountryCode: BRA + District: Pernambuco + Population: 91999 + - ID: 445 + Name: Santana do Livramento + CountryCode: BRA + District: Rio Grande do Sul + Population: 91779 + - ID: 446 + Name: Votorantim + CountryCode: BRA + District: São Paulo + Population: 91777 + - ID: 447 + Name: Campo Largo + CountryCode: BRA + District: Paraná + Population: 91203 + - ID: 448 + Name: Patos + CountryCode: BRA + District: Paraíba + Population: 90519 + - ID: 449 + Name: Ituiutaba + CountryCode: BRA + District: Minas Gerais + Population: 90507 + - ID: 450 + Name: Corumbá + CountryCode: BRA + District: Mato Grosso do Sul + Population: 90111 + - ID: 451 + Name: Palhoça + CountryCode: BRA + District: Santa Catarina + Population: 89465 + - ID: 452 + Name: Barra do Piraí + CountryCode: BRA + District: Rio de Janeiro + Population: 89388 + - ID: 453 + Name: Bento Gonçalves + CountryCode: BRA + District: Rio Grande do Sul + Population: 89254 + - ID: 454 + Name: Poá + CountryCode: BRA + District: São Paulo + Population: 89236 + - ID: 455 + Name: Águas Lindas de Goiás + CountryCode: BRA + District: Goiás + Population: 89200 + - ID: 456 + Name: London + CountryCode: GBR + District: England + Population: 7285000 + - ID: 457 + Name: Birmingham + CountryCode: GBR + District: England + Population: 1013000 + - ID: 458 + Name: Glasgow + CountryCode: GBR + District: Scotland + Population: 619680 + - ID: 459 + Name: Liverpool + CountryCode: GBR + District: England + Population: 461000 + - ID: 460 + Name: Edinburgh + CountryCode: GBR + District: Scotland + Population: 450180 + - ID: 461 + Name: Sheffield + CountryCode: GBR + District: England + Population: 431607 + - ID: 462 + Name: Manchester + CountryCode: GBR + District: England + Population: 430000 + - ID: 463 + Name: Leeds + CountryCode: GBR + District: England + Population: 424194 + - ID: 464 + Name: Bristol + CountryCode: GBR + District: England + Population: 402000 + - ID: 465 + Name: Cardiff + CountryCode: GBR + District: Wales + Population: 321000 + - ID: 466 + Name: Coventry + CountryCode: GBR + District: England + Population: 304000 + - ID: 467 + Name: Leicester + CountryCode: GBR + District: England + Population: 294000 + - ID: 468 + Name: Bradford + CountryCode: GBR + District: England + Population: 289376 + - ID: 469 + Name: Belfast + CountryCode: GBR + District: North Ireland + Population: 287500 + - ID: 470 + Name: Nottingham + CountryCode: GBR + District: England + Population: 287000 + - ID: 471 + Name: Kingston upon Hull + CountryCode: GBR + District: England + Population: 262000 + - ID: 472 + Name: Plymouth + CountryCode: GBR + District: England + Population: 253000 + - ID: 473 + Name: Stoke-on-Trent + CountryCode: GBR + District: England + Population: 252000 + - ID: 474 + Name: Wolverhampton + CountryCode: GBR + District: England + Population: 242000 + - ID: 475 + Name: Derby + CountryCode: GBR + District: England + Population: 236000 + - ID: 476 + Name: Swansea + CountryCode: GBR + District: Wales + Population: 230000 + - ID: 477 + Name: Southampton + CountryCode: GBR + District: England + Population: 216000 + - ID: 478 + Name: Aberdeen + CountryCode: GBR + District: Scotland + Population: 213070 + - ID: 479 + Name: Northampton + CountryCode: GBR + District: England + Population: 196000 + - ID: 480 + Name: Dudley + CountryCode: GBR + District: England + Population: 192171 + - ID: 481 + Name: Portsmouth + CountryCode: GBR + District: England + Population: 190000 + - ID: 482 + Name: Newcastle upon Tyne + CountryCode: GBR + District: England + Population: 189150 + - ID: 483 + Name: Sunderland + CountryCode: GBR + District: England + Population: 183310 + - ID: 484 + Name: Luton + CountryCode: GBR + District: England + Population: 183000 + - ID: 485 + Name: Swindon + CountryCode: GBR + District: England + Population: 180000 + - ID: 486 + Name: Southend-on-Sea + CountryCode: GBR + District: England + Population: 176000 + - ID: 487 + Name: Walsall + CountryCode: GBR + District: England + Population: 174739 + - ID: 488 + Name: Bournemouth + CountryCode: GBR + District: England + Population: 162000 + - ID: 489 + Name: Peterborough + CountryCode: GBR + District: England + Population: 156000 + - ID: 490 + Name: Brighton + CountryCode: GBR + District: England + Population: 156124 + - ID: 491 + Name: Blackpool + CountryCode: GBR + District: England + Population: 151000 + - ID: 492 + Name: Dundee + CountryCode: GBR + District: Scotland + Population: 146690 + - ID: 493 + Name: West Bromwich + CountryCode: GBR + District: England + Population: 146386 + - ID: 494 + Name: Reading + CountryCode: GBR + District: England + Population: 148000 + - ID: 495 + Name: Oldbury/Smethwick (Warley) + CountryCode: GBR + District: England + Population: 145542 + - ID: 496 + Name: Middlesbrough + CountryCode: GBR + District: England + Population: 145000 + - ID: 497 + Name: Huddersfield + CountryCode: GBR + District: England + Population: 143726 + - ID: 498 + Name: Oxford + CountryCode: GBR + District: England + Population: 144000 + - ID: 499 + Name: Poole + CountryCode: GBR + District: England + Population: 141000 + - ID: 500 + Name: Bolton + CountryCode: GBR + District: England + Population: 139020 + - ID: 501 + Name: Blackburn + CountryCode: GBR + District: England + Population: 140000 + - ID: 502 + Name: Newport + CountryCode: GBR + District: Wales + Population: 139000 + - ID: 503 + Name: Preston + CountryCode: GBR + District: England + Population: 135000 + - ID: 504 + Name: Stockport + CountryCode: GBR + District: England + Population: 132813 + - ID: 505 + Name: Norwich + CountryCode: GBR + District: England + Population: 124000 + - ID: 506 + Name: Rotherham + CountryCode: GBR + District: England + Population: 121380 + - ID: 507 + Name: Cambridge + CountryCode: GBR + District: England + Population: 121000 + - ID: 508 + Name: Watford + CountryCode: GBR + District: England + Population: 113080 + - ID: 509 + Name: Ipswich + CountryCode: GBR + District: England + Population: 114000 + - ID: 510 + Name: Slough + CountryCode: GBR + District: England + Population: 112000 + - ID: 511 + Name: Exeter + CountryCode: GBR + District: England + Population: 111000 + - ID: 512 + Name: Cheltenham + CountryCode: GBR + District: England + Population: 106000 + - ID: 513 + Name: Gloucester + CountryCode: GBR + District: England + Population: 107000 + - ID: 514 + Name: Saint Helens + CountryCode: GBR + District: England + Population: 106293 + - ID: 515 + Name: Sutton Coldfield + CountryCode: GBR + District: England + Population: 106001 + - ID: 516 + Name: York + CountryCode: GBR + District: England + Population: 104425 + - ID: 517 + Name: Oldham + CountryCode: GBR + District: England + Population: 103931 + - ID: 518 + Name: Basildon + CountryCode: GBR + District: England + Population: 100924 + - ID: 519 + Name: Worthing + CountryCode: GBR + District: England + Population: 100000 + - ID: 520 + Name: Chelmsford + CountryCode: GBR + District: England + Population: 97451 + - ID: 521 + Name: Colchester + CountryCode: GBR + District: England + Population: 96063 + - ID: 522 + Name: Crawley + CountryCode: GBR + District: England + Population: 97000 + - ID: 523 + Name: Gillingham + CountryCode: GBR + District: England + Population: 92000 + - ID: 524 + Name: Solihull + CountryCode: GBR + District: England + Population: 94531 + - ID: 525 + Name: Rochdale + CountryCode: GBR + District: England + Population: 94313 + - ID: 526 + Name: Birkenhead + CountryCode: GBR + District: England + Population: 93087 + - ID: 527 + Name: Worcester + CountryCode: GBR + District: England + Population: 95000 + - ID: 528 + Name: Hartlepool + CountryCode: GBR + District: England + Population: 92000 + - ID: 529 + Name: Halifax + CountryCode: GBR + District: England + Population: 91069 + - ID: 530 + Name: Woking/Byfleet + CountryCode: GBR + District: England + Population: 92000 + - ID: 531 + Name: Southport + CountryCode: GBR + District: England + Population: 90959 + - ID: 532 + Name: Maidstone + CountryCode: GBR + District: England + Population: 90878 + - ID: 533 + Name: Eastbourne + CountryCode: GBR + District: England + Population: 90000 + - ID: 534 + Name: Grimsby + CountryCode: GBR + District: England + Population: 89000 + - ID: 535 + Name: Saint Helier + CountryCode: GBR + District: Jersey + Population: 27523 + - ID: 536 + Name: Douglas + CountryCode: GBR + District: – + Population: 23487 + - ID: 537 + Name: Road Town + CountryCode: VGB + District: Tortola + Population: 8000 + - ID: 538 + Name: Bandar Seri Begawan + CountryCode: BRN + District: Brunei and Muara + Population: 21484 + - ID: 539 + Name: Sofija + CountryCode: BGR + District: Grad Sofija + Population: 1122302 + - ID: 540 + Name: Plovdiv + CountryCode: BGR + District: Plovdiv + Population: 342584 + - ID: 541 + Name: Varna + CountryCode: BGR + District: Varna + Population: 299801 + - ID: 542 + Name: Burgas + CountryCode: BGR + District: Burgas + Population: 195255 + - ID: 543 + Name: Ruse + CountryCode: BGR + District: Ruse + Population: 166467 + - ID: 544 + Name: Stara Zagora + CountryCode: BGR + District: Haskovo + Population: 147939 + - ID: 545 + Name: Pleven + CountryCode: BGR + District: Lovec + Population: 121952 + - ID: 546 + Name: Sliven + CountryCode: BGR + District: Burgas + Population: 105530 + - ID: 547 + Name: Dobric + CountryCode: BGR + District: Varna + Population: 100399 + - ID: 548 + Name: Šumen + CountryCode: BGR + District: Varna + Population: 94686 + - ID: 549 + Name: Ouagadougou + CountryCode: BFA + District: Kadiogo + Population: 824000 + - ID: 550 + Name: Bobo-Dioulasso + CountryCode: BFA + District: Houet + Population: 300000 + - ID: 551 + Name: Koudougou + CountryCode: BFA + District: Boulkiemdé + Population: 105000 + - ID: 552 + Name: Bujumbura + CountryCode: BDI + District: Bujumbura + Population: 300000 + - ID: 553 + Name: George Town + CountryCode: CYM + District: Grand Cayman + Population: 19600 + - ID: 554 + Name: Santiago de Chile + CountryCode: CHL + District: Santiago + Population: 4703954 + - ID: 555 + Name: Puente Alto + CountryCode: CHL + District: Santiago + Population: 386236 + - ID: 556 + Name: Viña del Mar + CountryCode: CHL + District: Valparaíso + Population: 312493 + - ID: 557 + Name: Valparaíso + CountryCode: CHL + District: Valparaíso + Population: 293800 + - ID: 558 + Name: Talcahuano + CountryCode: CHL + District: Bíobío + Population: 277752 + - ID: 559 + Name: Antofagasta + CountryCode: CHL + District: Antofagasta + Population: 251429 + - ID: 560 + Name: San Bernardo + CountryCode: CHL + District: Santiago + Population: 241910 + - ID: 561 + Name: Temuco + CountryCode: CHL + District: La Araucanía + Population: 233041 + - ID: 562 + Name: Concepción + CountryCode: CHL + District: Bíobío + Population: 217664 + - ID: 563 + Name: Rancagua + CountryCode: CHL + District: O´Higgins + Population: 212977 + - ID: 564 + Name: Arica + CountryCode: CHL + District: Tarapacá + Population: 189036 + - ID: 565 + Name: Talca + CountryCode: CHL + District: Maule + Population: 187557 + - ID: 566 + Name: Chillán + CountryCode: CHL + District: Bíobío + Population: 178182 + - ID: 567 + Name: Iquique + CountryCode: CHL + District: Tarapacá + Population: 177892 + - ID: 568 + Name: Los Angeles + CountryCode: CHL + District: Bíobío + Population: 158215 + - ID: 569 + Name: Puerto Montt + CountryCode: CHL + District: Los Lagos + Population: 152194 + - ID: 570 + Name: Coquimbo + CountryCode: CHL + District: Coquimbo + Population: 143353 + - ID: 571 + Name: Osorno + CountryCode: CHL + District: Los Lagos + Population: 141468 + - ID: 572 + Name: La Serena + CountryCode: CHL + District: Coquimbo + Population: 137409 + - ID: 573 + Name: Calama + CountryCode: CHL + District: Antofagasta + Population: 137265 + - ID: 574 + Name: Valdivia + CountryCode: CHL + District: Los Lagos + Population: 133106 + - ID: 575 + Name: Punta Arenas + CountryCode: CHL + District: Magallanes + Population: 125631 + - ID: 576 + Name: Copiapó + CountryCode: CHL + District: Atacama + Population: 120128 + - ID: 577 + Name: Quilpué + CountryCode: CHL + District: Valparaíso + Population: 118857 + - ID: 578 + Name: Curicó + CountryCode: CHL + District: Maule + Population: 115766 + - ID: 579 + Name: Ovalle + CountryCode: CHL + District: Coquimbo + Population: 94854 + - ID: 580 + Name: Coronel + CountryCode: CHL + District: Bíobío + Population: 93061 + - ID: 581 + Name: San Pedro de la Paz + CountryCode: CHL + District: Bíobío + Population: 91684 + - ID: 582 + Name: Melipilla + CountryCode: CHL + District: Santiago + Population: 91056 + - ID: 583 + Name: Avarua + CountryCode: COK + District: Rarotonga + Population: 11900 + - ID: 584 + Name: San José + CountryCode: CRI + District: San José + Population: 339131 + - ID: 585 + Name: Djibouti + CountryCode: DJI + District: Djibouti + Population: 383000 + - ID: 586 + Name: Roseau + CountryCode: DMA + District: St George + Population: 16243 + - ID: 587 + Name: Santo Domingo de Guzmán + CountryCode: DOM + District: Distrito Nacional + Population: 1609966 + - ID: 588 + Name: Santiago de los Caballeros + CountryCode: DOM + District: Santiago + Population: 365463 + - ID: 589 + Name: La Romana + CountryCode: DOM + District: La Romana + Population: 140204 + - ID: 590 + Name: San Pedro de Macorís + CountryCode: DOM + District: San Pedro de Macorís + Population: 124735 + - ID: 591 + Name: San Francisco de Macorís + CountryCode: DOM + District: Duarte + Population: 108485 + - ID: 592 + Name: San Felipe de Puerto Plata + CountryCode: DOM + District: Puerto Plata + Population: 89423 + - ID: 593 + Name: Guayaquil + CountryCode: ECU + District: Guayas + Population: 2070040 + - ID: 594 + Name: Quito + CountryCode: ECU + District: Pichincha + Population: 1573458 + - ID: 595 + Name: Cuenca + CountryCode: ECU + District: Azuay + Population: 270353 + - ID: 596 + Name: Machala + CountryCode: ECU + District: El Oro + Population: 210368 + - ID: 597 + Name: Santo Domingo de los Colorados + CountryCode: ECU + District: Pichincha + Population: 202111 + - ID: 598 + Name: Portoviejo + CountryCode: ECU + District: Manabí + Population: 176413 + - ID: 599 + Name: Ambato + CountryCode: ECU + District: Tungurahua + Population: 169612 + - ID: 600 + Name: Manta + CountryCode: ECU + District: Manabí + Population: 164739 + - ID: 601 + Name: Duran [Eloy Alfaro] + CountryCode: ECU + District: Guayas + Population: 152514 + - ID: 602 + Name: Ibarra + CountryCode: ECU + District: Imbabura + Population: 130643 + - ID: 603 + Name: Quevedo + CountryCode: ECU + District: Los Ríos + Population: 129631 + - ID: 604 + Name: Milagro + CountryCode: ECU + District: Guayas + Population: 124177 + - ID: 605 + Name: Loja + CountryCode: ECU + District: Loja + Population: 123875 + - ID: 606 + Name: Ríobamba + CountryCode: ECU + District: Chimborazo + Population: 123163 + - ID: 607 + Name: Esmeraldas + CountryCode: ECU + District: Esmeraldas + Population: 123045 + - ID: 608 + Name: Cairo + CountryCode: EGY + District: Kairo + Population: 6789479 + - ID: 609 + Name: Alexandria + CountryCode: EGY + District: Aleksandria + Population: 3328196 + - ID: 610 + Name: Giza + CountryCode: EGY + District: Giza + Population: 2221868 + - ID: 611 + Name: Shubra al-Khayma + CountryCode: EGY + District: al-Qalyubiya + Population: 870716 + - ID: 612 + Name: Port Said + CountryCode: EGY + District: Port Said + Population: 469533 + - ID: 613 + Name: Suez + CountryCode: EGY + District: Suez + Population: 417610 + - ID: 614 + Name: al-Mahallat al-Kubra + CountryCode: EGY + District: al-Gharbiya + Population: 395402 + - ID: 615 + Name: Tanta + CountryCode: EGY + District: al-Gharbiya + Population: 371010 + - ID: 616 + Name: al-Mansura + CountryCode: EGY + District: al-Daqahliya + Population: 369621 + - ID: 617 + Name: Luxor + CountryCode: EGY + District: Luxor + Population: 360503 + - ID: 618 + Name: Asyut + CountryCode: EGY + District: Asyut + Population: 343498 + - ID: 619 + Name: Bahtim + CountryCode: EGY + District: al-Qalyubiya + Population: 275807 + - ID: 620 + Name: Zagazig + CountryCode: EGY + District: al-Sharqiya + Population: 267351 + - ID: 621 + Name: al-Faiyum + CountryCode: EGY + District: al-Faiyum + Population: 260964 + - ID: 622 + Name: Ismailia + CountryCode: EGY + District: Ismailia + Population: 254477 + - ID: 623 + Name: Kafr al-Dawwar + CountryCode: EGY + District: al-Buhayra + Population: 231978 + - ID: 624 + Name: Assuan + CountryCode: EGY + District: Assuan + Population: 219017 + - ID: 625 + Name: Damanhur + CountryCode: EGY + District: al-Buhayra + Population: 212203 + - ID: 626 + Name: al-Minya + CountryCode: EGY + District: al-Minya + Population: 201360 + - ID: 627 + Name: Bani Suwayf + CountryCode: EGY + District: Bani Suwayf + Population: 172032 + - ID: 628 + Name: Qina + CountryCode: EGY + District: Qina + Population: 171275 + - ID: 629 + Name: Sawhaj + CountryCode: EGY + District: Sawhaj + Population: 170125 + - ID: 630 + Name: Shibin al-Kawm + CountryCode: EGY + District: al-Minufiya + Population: 159909 + - ID: 631 + Name: Bulaq al-Dakrur + CountryCode: EGY + District: Giza + Population: 148787 + - ID: 632 + Name: Banha + CountryCode: EGY + District: al-Qalyubiya + Population: 145792 + - ID: 633 + Name: Warraq al-Arab + CountryCode: EGY + District: Giza + Population: 127108 + - ID: 634 + Name: Kafr al-Shaykh + CountryCode: EGY + District: Kafr al-Shaykh + Population: 124819 + - ID: 635 + Name: Mallawi + CountryCode: EGY + District: al-Minya + Population: 119283 + - ID: 636 + Name: Bilbays + CountryCode: EGY + District: al-Sharqiya + Population: 113608 + - ID: 637 + Name: Mit Ghamr + CountryCode: EGY + District: al-Daqahliya + Population: 101801 + - ID: 638 + Name: al-Arish + CountryCode: EGY + District: Shamal Sina + Population: 100447 + - ID: 639 + Name: Talkha + CountryCode: EGY + District: al-Daqahliya + Population: 97700 + - ID: 640 + Name: Qalyub + CountryCode: EGY + District: al-Qalyubiya + Population: 97200 + - ID: 641 + Name: Jirja + CountryCode: EGY + District: Sawhaj + Population: 95400 + - ID: 642 + Name: Idfu + CountryCode: EGY + District: Qina + Population: 94200 + - ID: 643 + Name: al-Hawamidiya + CountryCode: EGY + District: Giza + Population: 91700 + - ID: 644 + Name: Disuq + CountryCode: EGY + District: Kafr al-Shaykh + Population: 91300 + - ID: 645 + Name: San Salvador + CountryCode: SLV + District: San Salvador + Population: 415346 + - ID: 646 + Name: Santa Ana + CountryCode: SLV + District: Santa Ana + Population: 139389 + - ID: 647 + Name: Mejicanos + CountryCode: SLV + District: San Salvador + Population: 138800 + - ID: 648 + Name: Soyapango + CountryCode: SLV + District: San Salvador + Population: 129800 + - ID: 649 + Name: San Miguel + CountryCode: SLV + District: San Miguel + Population: 127696 + - ID: 650 + Name: Nueva San Salvador + CountryCode: SLV + District: La Libertad + Population: 98400 + - ID: 651 + Name: Apopa + CountryCode: SLV + District: San Salvador + Population: 88800 + - ID: 652 + Name: Asmara + CountryCode: ERI + District: Maekel + Population: 431000 + - ID: 653 + Name: Madrid + CountryCode: ESP + District: Madrid + Population: 2879052 + - ID: 654 + Name: Barcelona + CountryCode: ESP + District: Katalonia + Population: 1503451 + - ID: 655 + Name: Valencia + CountryCode: ESP + District: Valencia + Population: 739412 + - ID: 656 + Name: Sevilla + CountryCode: ESP + District: Andalusia + Population: 701927 + - ID: 657 + Name: Zaragoza + CountryCode: ESP + District: Aragonia + Population: 603367 + - ID: 658 + Name: Málaga + CountryCode: ESP + District: Andalusia + Population: 530553 + - ID: 659 + Name: Bilbao + CountryCode: ESP + District: Baskimaa + Population: 357589 + - ID: 660 + Name: Las Palmas de Gran Canaria + CountryCode: ESP + District: Canary Islands + Population: 354757 + - ID: 661 + Name: Murcia + CountryCode: ESP + District: Murcia + Population: 353504 + - ID: 662 + Name: Palma de Mallorca + CountryCode: ESP + District: Balears + Population: 326993 + - ID: 663 + Name: Valladolid + CountryCode: ESP + District: Castilla and León + Population: 319998 + - ID: 664 + Name: Córdoba + CountryCode: ESP + District: Andalusia + Population: 311708 + - ID: 665 + Name: Vigo + CountryCode: ESP + District: Galicia + Population: 283670 + - ID: 666 + Name: Alicante [Alacant] + CountryCode: ESP + District: Valencia + Population: 272432 + - ID: 667 + Name: Gijón + CountryCode: ESP + District: Asturia + Population: 267980 + - ID: 668 + Name: L´Hospitalet de Llobregat + CountryCode: ESP + District: Katalonia + Population: 247986 + - ID: 669 + Name: Granada + CountryCode: ESP + District: Andalusia + Population: 244767 + - ID: 670 + Name: A Coruña (La Coruña) + CountryCode: ESP + District: Galicia + Population: 243402 + - ID: 671 + Name: Vitoria-Gasteiz + CountryCode: ESP + District: Baskimaa + Population: 217154 + - ID: 672 + Name: Santa Cruz de Tenerife + CountryCode: ESP + District: Canary Islands + Population: 213050 + - ID: 673 + Name: Badalona + CountryCode: ESP + District: Katalonia + Population: 209635 + - ID: 674 + Name: Oviedo + CountryCode: ESP + District: Asturia + Population: 200453 + - ID: 675 + Name: Móstoles + CountryCode: ESP + District: Madrid + Population: 195351 + - ID: 676 + Name: Elche [Elx] + CountryCode: ESP + District: Valencia + Population: 193174 + - ID: 677 + Name: Sabadell + CountryCode: ESP + District: Katalonia + Population: 184859 + - ID: 678 + Name: Santander + CountryCode: ESP + District: Cantabria + Population: 184165 + - ID: 679 + Name: Jerez de la Frontera + CountryCode: ESP + District: Andalusia + Population: 182660 + - ID: 680 + Name: Pamplona [Iruña] + CountryCode: ESP + District: Navarra + Population: 180483 + - ID: 681 + Name: Donostia-San Sebastián + CountryCode: ESP + District: Baskimaa + Population: 179208 + - ID: 682 + Name: Cartagena + CountryCode: ESP + District: Murcia + Population: 177709 + - ID: 683 + Name: Leganés + CountryCode: ESP + District: Madrid + Population: 173163 + - ID: 684 + Name: Fuenlabrada + CountryCode: ESP + District: Madrid + Population: 171173 + - ID: 685 + Name: Almería + CountryCode: ESP + District: Andalusia + Population: 169027 + - ID: 686 + Name: Terrassa + CountryCode: ESP + District: Katalonia + Population: 168695 + - ID: 687 + Name: Alcalá de Henares + CountryCode: ESP + District: Madrid + Population: 164463 + - ID: 688 + Name: Burgos + CountryCode: ESP + District: Castilla and León + Population: 162802 + - ID: 689 + Name: Salamanca + CountryCode: ESP + District: Castilla and León + Population: 158720 + - ID: 690 + Name: Albacete + CountryCode: ESP + District: Kastilia-La Mancha + Population: 147527 + - ID: 691 + Name: Getafe + CountryCode: ESP + District: Madrid + Population: 145371 + - ID: 692 + Name: Cádiz + CountryCode: ESP + District: Andalusia + Population: 142449 + - ID: 693 + Name: Alcorcón + CountryCode: ESP + District: Madrid + Population: 142048 + - ID: 694 + Name: Huelva + CountryCode: ESP + District: Andalusia + Population: 140583 + - ID: 695 + Name: León + CountryCode: ESP + District: Castilla and León + Population: 139809 + - ID: 696 + Name: Castellón de la Plana [Castell + CountryCode: ESP + District: Valencia + Population: 139712 + - ID: 697 + Name: Badajoz + CountryCode: ESP + District: Extremadura + Population: 136613 + - ID: 698 + Name: '[San Cristóbal de] la Laguna' + CountryCode: ESP + District: Canary Islands + Population: 127945 + - ID: 699 + Name: Logroño + CountryCode: ESP + District: La Rioja + Population: 127093 + - ID: 700 + Name: Santa Coloma de Gramenet + CountryCode: ESP + District: Katalonia + Population: 120802 + - ID: 701 + Name: Tarragona + CountryCode: ESP + District: Katalonia + Population: 113016 + - ID: 702 + Name: Lleida (Lérida) + CountryCode: ESP + District: Katalonia + Population: 112207 + - ID: 703 + Name: Jaén + CountryCode: ESP + District: Andalusia + Population: 109247 + - ID: 704 + Name: Ourense (Orense) + CountryCode: ESP + District: Galicia + Population: 109120 + - ID: 705 + Name: Mataró + CountryCode: ESP + District: Katalonia + Population: 104095 + - ID: 706 + Name: Algeciras + CountryCode: ESP + District: Andalusia + Population: 103106 + - ID: 707 + Name: Marbella + CountryCode: ESP + District: Andalusia + Population: 101144 + - ID: 708 + Name: Barakaldo + CountryCode: ESP + District: Baskimaa + Population: 98212 + - ID: 709 + Name: Dos Hermanas + CountryCode: ESP + District: Andalusia + Population: 94591 + - ID: 710 + Name: Santiago de Compostela + CountryCode: ESP + District: Galicia + Population: 93745 + - ID: 711 + Name: Torrejón de Ardoz + CountryCode: ESP + District: Madrid + Population: 92262 + - ID: 712 + Name: Cape Town + CountryCode: ZAF + District: Western Cape + Population: 2352121 + - ID: 713 + Name: Soweto + CountryCode: ZAF + District: Gauteng + Population: 904165 + - ID: 714 + Name: Johannesburg + CountryCode: ZAF + District: Gauteng + Population: 756653 + - ID: 715 + Name: Port Elizabeth + CountryCode: ZAF + District: Eastern Cape + Population: 752319 + - ID: 716 + Name: Pretoria + CountryCode: ZAF + District: Gauteng + Population: 658630 + - ID: 717 + Name: Inanda + CountryCode: ZAF + District: KwaZulu-Natal + Population: 634065 + - ID: 718 + Name: Durban + CountryCode: ZAF + District: KwaZulu-Natal + Population: 566120 + - ID: 719 + Name: Vanderbijlpark + CountryCode: ZAF + District: Gauteng + Population: 468931 + - ID: 720 + Name: Kempton Park + CountryCode: ZAF + District: Gauteng + Population: 442633 + - ID: 721 + Name: Alberton + CountryCode: ZAF + District: Gauteng + Population: 410102 + - ID: 722 + Name: Pinetown + CountryCode: ZAF + District: KwaZulu-Natal + Population: 378810 + - ID: 723 + Name: Pietermaritzburg + CountryCode: ZAF + District: KwaZulu-Natal + Population: 370190 + - ID: 724 + Name: Benoni + CountryCode: ZAF + District: Gauteng + Population: 365467 + - ID: 725 + Name: Randburg + CountryCode: ZAF + District: Gauteng + Population: 341288 + - ID: 726 + Name: Umlazi + CountryCode: ZAF + District: KwaZulu-Natal + Population: 339233 + - ID: 727 + Name: Bloemfontein + CountryCode: ZAF + District: Free State + Population: 334341 + - ID: 728 + Name: Vereeniging + CountryCode: ZAF + District: Gauteng + Population: 328535 + - ID: 729 + Name: Wonderboom + CountryCode: ZAF + District: Gauteng + Population: 283289 + - ID: 730 + Name: Roodepoort + CountryCode: ZAF + District: Gauteng + Population: 279340 + - ID: 731 + Name: Boksburg + CountryCode: ZAF + District: Gauteng + Population: 262648 + - ID: 732 + Name: Klerksdorp + CountryCode: ZAF + District: North West + Population: 261911 + - ID: 733 + Name: Soshanguve + CountryCode: ZAF + District: Gauteng + Population: 242727 + - ID: 734 + Name: Newcastle + CountryCode: ZAF + District: KwaZulu-Natal + Population: 222993 + - ID: 735 + Name: East London + CountryCode: ZAF + District: Eastern Cape + Population: 221047 + - ID: 736 + Name: Welkom + CountryCode: ZAF + District: Free State + Population: 203296 + - ID: 737 + Name: Kimberley + CountryCode: ZAF + District: Northern Cape + Population: 197254 + - ID: 738 + Name: Uitenhage + CountryCode: ZAF + District: Eastern Cape + Population: 192120 + - ID: 739 + Name: Chatsworth + CountryCode: ZAF + District: KwaZulu-Natal + Population: 189885 + - ID: 740 + Name: Mdantsane + CountryCode: ZAF + District: Eastern Cape + Population: 182639 + - ID: 741 + Name: Krugersdorp + CountryCode: ZAF + District: Gauteng + Population: 181503 + - ID: 742 + Name: Botshabelo + CountryCode: ZAF + District: Free State + Population: 177971 + - ID: 743 + Name: Brakpan + CountryCode: ZAF + District: Gauteng + Population: 171363 + - ID: 744 + Name: Witbank + CountryCode: ZAF + District: Mpumalanga + Population: 167183 + - ID: 745 + Name: Oberholzer + CountryCode: ZAF + District: Gauteng + Population: 164367 + - ID: 746 + Name: Germiston + CountryCode: ZAF + District: Gauteng + Population: 164252 + - ID: 747 + Name: Springs + CountryCode: ZAF + District: Gauteng + Population: 162072 + - ID: 748 + Name: Westonaria + CountryCode: ZAF + District: Gauteng + Population: 159632 + - ID: 749 + Name: Randfontein + CountryCode: ZAF + District: Gauteng + Population: 120838 + - ID: 750 + Name: Paarl + CountryCode: ZAF + District: Western Cape + Population: 105768 + - ID: 751 + Name: Potchefstroom + CountryCode: ZAF + District: North West + Population: 101817 + - ID: 752 + Name: Rustenburg + CountryCode: ZAF + District: North West + Population: 97008 + - ID: 753 + Name: Nigel + CountryCode: ZAF + District: Gauteng + Population: 96734 + - ID: 754 + Name: George + CountryCode: ZAF + District: Western Cape + Population: 93818 + - ID: 755 + Name: Ladysmith + CountryCode: ZAF + District: KwaZulu-Natal + Population: 89292 + - ID: 756 + Name: Addis Abeba + CountryCode: ETH + District: Addis Abeba + Population: 2495000 + - ID: 757 + Name: Dire Dawa + CountryCode: ETH + District: Dire Dawa + Population: 164851 + - ID: 758 + Name: Nazret + CountryCode: ETH + District: Oromia + Population: 127842 + - ID: 759 + Name: Gonder + CountryCode: ETH + District: Amhara + Population: 112249 + - ID: 760 + Name: Dese + CountryCode: ETH + District: Amhara + Population: 97314 + - ID: 761 + Name: Mekele + CountryCode: ETH + District: Tigray + Population: 96938 + - ID: 762 + Name: Bahir Dar + CountryCode: ETH + District: Amhara + Population: 96140 + - ID: 763 + Name: Stanley + CountryCode: FLK + District: East Falkland + Population: 1636 + - ID: 764 + Name: Suva + CountryCode: FJI + District: Central + Population: 77366 + - ID: 765 + Name: Quezon + CountryCode: PHL + District: National Capital Reg + Population: 2173831 + - ID: 766 + Name: Manila + CountryCode: PHL + District: National Capital Reg + Population: 1581082 + - ID: 767 + Name: Kalookan + CountryCode: PHL + District: National Capital Reg + Population: 1177604 + - ID: 768 + Name: Davao + CountryCode: PHL + District: Southern Mindanao + Population: 1147116 + - ID: 769 + Name: Cebu + CountryCode: PHL + District: Central Visayas + Population: 718821 + - ID: 770 + Name: Zamboanga + CountryCode: PHL + District: Western Mindanao + Population: 601794 + - ID: 771 + Name: Pasig + CountryCode: PHL + District: National Capital Reg + Population: 505058 + - ID: 772 + Name: Valenzuela + CountryCode: PHL + District: National Capital Reg + Population: 485433 + - ID: 773 + Name: Las Piñas + CountryCode: PHL + District: National Capital Reg + Population: 472780 + - ID: 774 + Name: Antipolo + CountryCode: PHL + District: Southern Tagalog + Population: 470866 + - ID: 775 + Name: Taguig + CountryCode: PHL + District: National Capital Reg + Population: 467375 + - ID: 776 + Name: Cagayan de Oro + CountryCode: PHL + District: Northern Mindanao + Population: 461877 + - ID: 777 + Name: Parañaque + CountryCode: PHL + District: National Capital Reg + Population: 449811 + - ID: 778 + Name: Makati + CountryCode: PHL + District: National Capital Reg + Population: 444867 + - ID: 779 + Name: Bacolod + CountryCode: PHL + District: Western Visayas + Population: 429076 + - ID: 780 + Name: General Santos + CountryCode: PHL + District: Southern Mindanao + Population: 411822 + - ID: 781 + Name: Marikina + CountryCode: PHL + District: National Capital Reg + Population: 391170 + - ID: 782 + Name: Dasmariñas + CountryCode: PHL + District: Southern Tagalog + Population: 379520 + - ID: 783 + Name: Muntinlupa + CountryCode: PHL + District: National Capital Reg + Population: 379310 + - ID: 784 + Name: Iloilo + CountryCode: PHL + District: Western Visayas + Population: 365820 + - ID: 785 + Name: Pasay + CountryCode: PHL + District: National Capital Reg + Population: 354908 + - ID: 786 + Name: Malabon + CountryCode: PHL + District: National Capital Reg + Population: 338855 + - ID: 787 + Name: San José del Monte + CountryCode: PHL + District: Central Luzon + Population: 315807 + - ID: 788 + Name: Bacoor + CountryCode: PHL + District: Southern Tagalog + Population: 305699 + - ID: 789 + Name: Iligan + CountryCode: PHL + District: Central Mindanao + Population: 285061 + - ID: 790 + Name: Calamba + CountryCode: PHL + District: Southern Tagalog + Population: 281146 + - ID: 791 + Name: Mandaluyong + CountryCode: PHL + District: National Capital Reg + Population: 278474 + - ID: 792 + Name: Butuan + CountryCode: PHL + District: Caraga + Population: 267279 + - ID: 793 + Name: Angeles + CountryCode: PHL + District: Central Luzon + Population: 263971 + - ID: 794 + Name: Tarlac + CountryCode: PHL + District: Central Luzon + Population: 262481 + - ID: 795 + Name: Mandaue + CountryCode: PHL + District: Central Visayas + Population: 259728 + - ID: 796 + Name: Baguio + CountryCode: PHL + District: CAR + Population: 252386 + - ID: 797 + Name: Batangas + CountryCode: PHL + District: Southern Tagalog + Population: 247588 + - ID: 798 + Name: Cainta + CountryCode: PHL + District: Southern Tagalog + Population: 242511 + - ID: 799 + Name: San Pedro + CountryCode: PHL + District: Southern Tagalog + Population: 231403 + - ID: 800 + Name: Navotas + CountryCode: PHL + District: National Capital Reg + Population: 230403 + - ID: 801 + Name: Cabanatuan + CountryCode: PHL + District: Central Luzon + Population: 222859 + - ID: 802 + Name: San Fernando + CountryCode: PHL + District: Central Luzon + Population: 221857 + - ID: 803 + Name: Lipa + CountryCode: PHL + District: Southern Tagalog + Population: 218447 + - ID: 804 + Name: Lapu-Lapu + CountryCode: PHL + District: Central Visayas + Population: 217019 + - ID: 805 + Name: San Pablo + CountryCode: PHL + District: Southern Tagalog + Population: 207927 + - ID: 806 + Name: Biñan + CountryCode: PHL + District: Southern Tagalog + Population: 201186 + - ID: 807 + Name: Taytay + CountryCode: PHL + District: Southern Tagalog + Population: 198183 + - ID: 808 + Name: Lucena + CountryCode: PHL + District: Southern Tagalog + Population: 196075 + - ID: 809 + Name: Imus + CountryCode: PHL + District: Southern Tagalog + Population: 195482 + - ID: 810 + Name: Olongapo + CountryCode: PHL + District: Central Luzon + Population: 194260 + - ID: 811 + Name: Binangonan + CountryCode: PHL + District: Southern Tagalog + Population: 187691 + - ID: 812 + Name: Santa Rosa + CountryCode: PHL + District: Southern Tagalog + Population: 185633 + - ID: 813 + Name: Tagum + CountryCode: PHL + District: Southern Mindanao + Population: 179531 + - ID: 814 + Name: Tacloban + CountryCode: PHL + District: Eastern Visayas + Population: 178639 + - ID: 815 + Name: Malolos + CountryCode: PHL + District: Central Luzon + Population: 175291 + - ID: 816 + Name: Mabalacat + CountryCode: PHL + District: Central Luzon + Population: 171045 + - ID: 817 + Name: Cotabato + CountryCode: PHL + District: Central Mindanao + Population: 163849 + - ID: 818 + Name: Meycauayan + CountryCode: PHL + District: Central Luzon + Population: 163037 + - ID: 819 + Name: Puerto Princesa + CountryCode: PHL + District: Southern Tagalog + Population: 161912 + - ID: 820 + Name: Legazpi + CountryCode: PHL + District: Bicol + Population: 157010 + - ID: 821 + Name: Silang + CountryCode: PHL + District: Southern Tagalog + Population: 156137 + - ID: 822 + Name: Ormoc + CountryCode: PHL + District: Eastern Visayas + Population: 154297 + - ID: 823 + Name: San Carlos + CountryCode: PHL + District: Ilocos + Population: 154264 + - ID: 824 + Name: Kabankalan + CountryCode: PHL + District: Western Visayas + Population: 149769 + - ID: 825 + Name: Talisay + CountryCode: PHL + District: Central Visayas + Population: 148110 + - ID: 826 + Name: Valencia + CountryCode: PHL + District: Northern Mindanao + Population: 147924 + - ID: 827 + Name: Calbayog + CountryCode: PHL + District: Eastern Visayas + Population: 147187 + - ID: 828 + Name: Santa Maria + CountryCode: PHL + District: Central Luzon + Population: 144282 + - ID: 829 + Name: Pagadian + CountryCode: PHL + District: Western Mindanao + Population: 142515 + - ID: 830 + Name: Cadiz + CountryCode: PHL + District: Western Visayas + Population: 141954 + - ID: 831 + Name: Bago + CountryCode: PHL + District: Western Visayas + Population: 141721 + - ID: 832 + Name: Toledo + CountryCode: PHL + District: Central Visayas + Population: 141174 + - ID: 833 + Name: Naga + CountryCode: PHL + District: Bicol + Population: 137810 + - ID: 834 + Name: San Mateo + CountryCode: PHL + District: Southern Tagalog + Population: 135603 + - ID: 835 + Name: Panabo + CountryCode: PHL + District: Southern Mindanao + Population: 133950 + - ID: 836 + Name: Koronadal + CountryCode: PHL + District: Southern Mindanao + Population: 133786 + - ID: 837 + Name: Marawi + CountryCode: PHL + District: Central Mindanao + Population: 131090 + - ID: 838 + Name: Dagupan + CountryCode: PHL + District: Ilocos + Population: 130328 + - ID: 839 + Name: Sagay + CountryCode: PHL + District: Western Visayas + Population: 129765 + - ID: 840 + Name: Roxas + CountryCode: PHL + District: Western Visayas + Population: 126352 + - ID: 841 + Name: Lubao + CountryCode: PHL + District: Central Luzon + Population: 125699 + - ID: 842 + Name: Digos + CountryCode: PHL + District: Southern Mindanao + Population: 125171 + - ID: 843 + Name: San Miguel + CountryCode: PHL + District: Central Luzon + Population: 123824 + - ID: 844 + Name: Malaybalay + CountryCode: PHL + District: Northern Mindanao + Population: 123672 + - ID: 845 + Name: Tuguegarao + CountryCode: PHL + District: Cagayan Valley + Population: 120645 + - ID: 846 + Name: Ilagan + CountryCode: PHL + District: Cagayan Valley + Population: 119990 + - ID: 847 + Name: Baliuag + CountryCode: PHL + District: Central Luzon + Population: 119675 + - ID: 848 + Name: Surigao + CountryCode: PHL + District: Caraga + Population: 118534 + - ID: 849 + Name: San Carlos + CountryCode: PHL + District: Western Visayas + Population: 118259 + - ID: 850 + Name: San Juan del Monte + CountryCode: PHL + District: National Capital Reg + Population: 117680 + - ID: 851 + Name: Tanauan + CountryCode: PHL + District: Southern Tagalog + Population: 117539 + - ID: 852 + Name: Concepcion + CountryCode: PHL + District: Central Luzon + Population: 115171 + - ID: 853 + Name: Rodriguez (Montalban) + CountryCode: PHL + District: Southern Tagalog + Population: 115167 + - ID: 854 + Name: Sariaya + CountryCode: PHL + District: Southern Tagalog + Population: 114568 + - ID: 855 + Name: Malasiqui + CountryCode: PHL + District: Ilocos + Population: 113190 + - ID: 856 + Name: General Mariano Alvarez + CountryCode: PHL + District: Southern Tagalog + Population: 112446 + - ID: 857 + Name: Urdaneta + CountryCode: PHL + District: Ilocos + Population: 111582 + - ID: 858 + Name: Hagonoy + CountryCode: PHL + District: Central Luzon + Population: 111425 + - ID: 859 + Name: San Jose + CountryCode: PHL + District: Southern Tagalog + Population: 111009 + - ID: 860 + Name: Polomolok + CountryCode: PHL + District: Southern Mindanao + Population: 110709 + - ID: 861 + Name: Santiago + CountryCode: PHL + District: Cagayan Valley + Population: 110531 + - ID: 862 + Name: Tanza + CountryCode: PHL + District: Southern Tagalog + Population: 110517 + - ID: 863 + Name: Ozamis + CountryCode: PHL + District: Northern Mindanao + Population: 110420 + - ID: 864 + Name: Mexico + CountryCode: PHL + District: Central Luzon + Population: 109481 + - ID: 865 + Name: San Jose + CountryCode: PHL + District: Central Luzon + Population: 108254 + - ID: 866 + Name: Silay + CountryCode: PHL + District: Western Visayas + Population: 107722 + - ID: 867 + Name: General Trias + CountryCode: PHL + District: Southern Tagalog + Population: 107691 + - ID: 868 + Name: Tabaco + CountryCode: PHL + District: Bicol + Population: 107166 + - ID: 869 + Name: Cabuyao + CountryCode: PHL + District: Southern Tagalog + Population: 106630 + - ID: 870 + Name: Calapan + CountryCode: PHL + District: Southern Tagalog + Population: 105910 + - ID: 871 + Name: Mati + CountryCode: PHL + District: Southern Mindanao + Population: 105908 + - ID: 872 + Name: Midsayap + CountryCode: PHL + District: Central Mindanao + Population: 105760 + - ID: 873 + Name: Cauayan + CountryCode: PHL + District: Cagayan Valley + Population: 103952 + - ID: 874 + Name: Gingoog + CountryCode: PHL + District: Northern Mindanao + Population: 102379 + - ID: 875 + Name: Dumaguete + CountryCode: PHL + District: Central Visayas + Population: 102265 + - ID: 876 + Name: San Fernando + CountryCode: PHL + District: Ilocos + Population: 102082 + - ID: 877 + Name: Arayat + CountryCode: PHL + District: Central Luzon + Population: 101792 + - ID: 878 + Name: Bayawan (Tulong) + CountryCode: PHL + District: Central Visayas + Population: 101391 + - ID: 879 + Name: Kidapawan + CountryCode: PHL + District: Central Mindanao + Population: 101205 + - ID: 880 + Name: Daraga (Locsin) + CountryCode: PHL + District: Bicol + Population: 101031 + - ID: 881 + Name: Marilao + CountryCode: PHL + District: Central Luzon + Population: 101017 + - ID: 882 + Name: Malita + CountryCode: PHL + District: Southern Mindanao + Population: 100000 + - ID: 883 + Name: Dipolog + CountryCode: PHL + District: Western Mindanao + Population: 99862 + - ID: 884 + Name: Cavite + CountryCode: PHL + District: Southern Tagalog + Population: 99367 + - ID: 885 + Name: Danao + CountryCode: PHL + District: Central Visayas + Population: 98781 + - ID: 886 + Name: Bislig + CountryCode: PHL + District: Caraga + Population: 97860 + - ID: 887 + Name: Talavera + CountryCode: PHL + District: Central Luzon + Population: 97329 + - ID: 888 + Name: Guagua + CountryCode: PHL + District: Central Luzon + Population: 96858 + - ID: 889 + Name: Bayambang + CountryCode: PHL + District: Ilocos + Population: 96609 + - ID: 890 + Name: Nasugbu + CountryCode: PHL + District: Southern Tagalog + Population: 96113 + - ID: 891 + Name: Baybay + CountryCode: PHL + District: Eastern Visayas + Population: 95630 + - ID: 892 + Name: Capas + CountryCode: PHL + District: Central Luzon + Population: 95219 + - ID: 893 + Name: Sultan Kudarat + CountryCode: PHL + District: ARMM + Population: 94861 + - ID: 894 + Name: Laoag + CountryCode: PHL + District: Ilocos + Population: 94466 + - ID: 895 + Name: Bayugan + CountryCode: PHL + District: Caraga + Population: 93623 + - ID: 896 + Name: Malungon + CountryCode: PHL + District: Southern Mindanao + Population: 93232 + - ID: 897 + Name: Santa Cruz + CountryCode: PHL + District: Southern Tagalog + Population: 92694 + - ID: 898 + Name: Sorsogon + CountryCode: PHL + District: Bicol + Population: 92512 + - ID: 899 + Name: Candelaria + CountryCode: PHL + District: Southern Tagalog + Population: 92429 + - ID: 900 + Name: Ligao + CountryCode: PHL + District: Bicol + Population: 90603 + - ID: 901 + Name: Tórshavn + CountryCode: FRO + District: Streymoyar + Population: 14542 + - ID: 902 + Name: Libreville + CountryCode: GAB + District: Estuaire + Population: 419000 + - ID: 903 + Name: Serekunda + CountryCode: GMB + District: Kombo St Mary + Population: 102600 + - ID: 904 + Name: Banjul + CountryCode: GMB + District: Banjul + Population: 42326 + - ID: 905 + Name: Tbilisi + CountryCode: GEO + District: Tbilisi + Population: 1235200 + - ID: 906 + Name: Kutaisi + CountryCode: GEO + District: Imereti + Population: 240900 + - ID: 907 + Name: Rustavi + CountryCode: GEO + District: Kvemo Kartli + Population: 155400 + - ID: 908 + Name: Batumi + CountryCode: GEO + District: Adzaria [Atšara] + Population: 137700 + - ID: 909 + Name: Sohumi + CountryCode: GEO + District: Abhasia [Aphazeti] + Population: 111700 + - ID: 910 + Name: Accra + CountryCode: GHA + District: Greater Accra + Population: 1070000 + - ID: 911 + Name: Kumasi + CountryCode: GHA + District: Ashanti + Population: 385192 + - ID: 912 + Name: Tamale + CountryCode: GHA + District: Northern + Population: 151069 + - ID: 913 + Name: Tema + CountryCode: GHA + District: Greater Accra + Population: 109975 + - ID: 914 + Name: Sekondi-Takoradi + CountryCode: GHA + District: Western + Population: 103653 + - ID: 915 + Name: Gibraltar + CountryCode: GIB + District: – + Population: 27025 + - ID: 916 + Name: Saint George´s + CountryCode: GRD + District: St George + Population: 4621 + - ID: 917 + Name: Nuuk + CountryCode: GRL + District: Kitaa + Population: 13445 + - ID: 918 + Name: Les Abymes + CountryCode: GLP + District: Grande-Terre + Population: 62947 + - ID: 919 + Name: Basse-Terre + CountryCode: GLP + District: Basse-Terre + Population: 12433 + - ID: 920 + Name: Tamuning + CountryCode: GUM + District: – + Population: 9500 + - ID: 921 + Name: Agaña + CountryCode: GUM + District: – + Population: 1139 + - ID: 922 + Name: Ciudad de Guatemala + CountryCode: GTM + District: Guatemala + Population: 823301 + - ID: 923 + Name: Mixco + CountryCode: GTM + District: Guatemala + Population: 209791 + - ID: 924 + Name: Villa Nueva + CountryCode: GTM + District: Guatemala + Population: 101295 + - ID: 925 + Name: Quetzaltenango + CountryCode: GTM + District: Quetzaltenango + Population: 90801 + - ID: 926 + Name: Conakry + CountryCode: GIN + District: Conakry + Population: 1090610 + - ID: 927 + Name: Bissau + CountryCode: GNB + District: Bissau + Population: 241000 + - ID: 928 + Name: Georgetown + CountryCode: GUY + District: Georgetown + Population: 254000 + - ID: 929 + Name: Port-au-Prince + CountryCode: HTI + District: Ouest + Population: 884472 + - ID: 930 + Name: Carrefour + CountryCode: HTI + District: Ouest + Population: 290204 + - ID: 931 + Name: Delmas + CountryCode: HTI + District: Ouest + Population: 240429 + - ID: 932 + Name: Le-Cap-Haïtien + CountryCode: HTI + District: Nord + Population: 102233 + - ID: 933 + Name: Tegucigalpa + CountryCode: HND + District: Distrito Central + Population: 813900 + - ID: 934 + Name: San Pedro Sula + CountryCode: HND + District: Cortés + Population: 383900 + - ID: 935 + Name: La Ceiba + CountryCode: HND + District: Atlántida + Population: 89200 + - ID: 936 + Name: Kowloon and New Kowloon + CountryCode: HKG + District: Kowloon and New Kowl + Population: 1987996 + - ID: 937 + Name: Victoria + CountryCode: HKG + District: Hongkong + Population: 1312637 + - ID: 938 + Name: Longyearbyen + CountryCode: SJM + District: Länsimaa + Population: 1438 + - ID: 939 + Name: Jakarta + CountryCode: IDN + District: Jakarta Raya + Population: 9604900 + - ID: 940 + Name: Surabaya + CountryCode: IDN + District: East Java + Population: 2663820 + - ID: 941 + Name: Bandung + CountryCode: IDN + District: West Java + Population: 2429000 + - ID: 942 + Name: Medan + CountryCode: IDN + District: Sumatera Utara + Population: 1843919 + - ID: 943 + Name: Palembang + CountryCode: IDN + District: Sumatera Selatan + Population: 1222764 + - ID: 944 + Name: Tangerang + CountryCode: IDN + District: West Java + Population: 1198300 + - ID: 945 + Name: Semarang + CountryCode: IDN + District: Central Java + Population: 1104405 + - ID: 946 + Name: Ujung Pandang + CountryCode: IDN + District: Sulawesi Selatan + Population: 1060257 + - ID: 947 + Name: Malang + CountryCode: IDN + District: East Java + Population: 716862 + - ID: 948 + Name: Bandar Lampung + CountryCode: IDN + District: Lampung + Population: 680332 + - ID: 949 + Name: Bekasi + CountryCode: IDN + District: West Java + Population: 644300 + - ID: 950 + Name: Padang + CountryCode: IDN + District: Sumatera Barat + Population: 534474 + - ID: 951 + Name: Surakarta + CountryCode: IDN + District: Central Java + Population: 518600 + - ID: 952 + Name: Banjarmasin + CountryCode: IDN + District: Kalimantan Selatan + Population: 482931 + - ID: 953 + Name: Pekan Baru + CountryCode: IDN + District: Riau + Population: 438638 + - ID: 954 + Name: Denpasar + CountryCode: IDN + District: Bali + Population: 435000 + - ID: 955 + Name: Yogyakarta + CountryCode: IDN + District: Yogyakarta + Population: 418944 + - ID: 956 + Name: Pontianak + CountryCode: IDN + District: Kalimantan Barat + Population: 409632 + - ID: 957 + Name: Samarinda + CountryCode: IDN + District: Kalimantan Timur + Population: 399175 + - ID: 958 + Name: Jambi + CountryCode: IDN + District: Jambi + Population: 385201 + - ID: 959 + Name: Depok + CountryCode: IDN + District: West Java + Population: 365200 + - ID: 960 + Name: Cimahi + CountryCode: IDN + District: West Java + Population: 344600 + - ID: 961 + Name: Balikpapan + CountryCode: IDN + District: Kalimantan Timur + Population: 338752 + - ID: 962 + Name: Manado + CountryCode: IDN + District: Sulawesi Utara + Population: 332288 + - ID: 963 + Name: Mataram + CountryCode: IDN + District: Nusa Tenggara Barat + Population: 306600 + - ID: 964 + Name: Pekalongan + CountryCode: IDN + District: Central Java + Population: 301504 + - ID: 965 + Name: Tegal + CountryCode: IDN + District: Central Java + Population: 289744 + - ID: 966 + Name: Bogor + CountryCode: IDN + District: West Java + Population: 285114 + - ID: 967 + Name: Ciputat + CountryCode: IDN + District: West Java + Population: 270800 + - ID: 968 + Name: Pondokgede + CountryCode: IDN + District: West Java + Population: 263200 + - ID: 969 + Name: Cirebon + CountryCode: IDN + District: West Java + Population: 254406 + - ID: 970 + Name: Kediri + CountryCode: IDN + District: East Java + Population: 253760 + - ID: 971 + Name: Ambon + CountryCode: IDN + District: Molukit + Population: 249312 + - ID: 972 + Name: Jember + CountryCode: IDN + District: East Java + Population: 218500 + - ID: 973 + Name: Cilacap + CountryCode: IDN + District: Central Java + Population: 206900 + - ID: 974 + Name: Cimanggis + CountryCode: IDN + District: West Java + Population: 205100 + - ID: 975 + Name: Pematang Siantar + CountryCode: IDN + District: Sumatera Utara + Population: 203056 + - ID: 976 + Name: Purwokerto + CountryCode: IDN + District: Central Java + Population: 202500 + - ID: 977 + Name: Ciomas + CountryCode: IDN + District: West Java + Population: 187400 + - ID: 978 + Name: Tasikmalaya + CountryCode: IDN + District: West Java + Population: 179800 + - ID: 979 + Name: Madiun + CountryCode: IDN + District: East Java + Population: 171532 + - ID: 980 + Name: Bengkulu + CountryCode: IDN + District: Bengkulu + Population: 146439 + - ID: 981 + Name: Karawang + CountryCode: IDN + District: West Java + Population: 145000 + - ID: 982 + Name: Banda Aceh + CountryCode: IDN + District: Aceh + Population: 143409 + - ID: 983 + Name: Palu + CountryCode: IDN + District: Sulawesi Tengah + Population: 142800 + - ID: 984 + Name: Pasuruan + CountryCode: IDN + District: East Java + Population: 134019 + - ID: 985 + Name: Kupang + CountryCode: IDN + District: Nusa Tenggara Timur + Population: 129300 + - ID: 986 + Name: Tebing Tinggi + CountryCode: IDN + District: Sumatera Utara + Population: 129300 + - ID: 987 + Name: Percut Sei Tuan + CountryCode: IDN + District: Sumatera Utara + Population: 129000 + - ID: 988 + Name: Binjai + CountryCode: IDN + District: Sumatera Utara + Population: 127222 + - ID: 989 + Name: Sukabumi + CountryCode: IDN + District: West Java + Population: 125766 + - ID: 990 + Name: Waru + CountryCode: IDN + District: East Java + Population: 124300 + - ID: 991 + Name: Pangkal Pinang + CountryCode: IDN + District: Sumatera Selatan + Population: 124000 + - ID: 992 + Name: Magelang + CountryCode: IDN + District: Central Java + Population: 123800 + - ID: 993 + Name: Blitar + CountryCode: IDN + District: East Java + Population: 122600 + - ID: 994 + Name: Serang + CountryCode: IDN + District: West Java + Population: 122400 + - ID: 995 + Name: Probolinggo + CountryCode: IDN + District: East Java + Population: 120770 + - ID: 996 + Name: Cilegon + CountryCode: IDN + District: West Java + Population: 117000 + - ID: 997 + Name: Cianjur + CountryCode: IDN + District: West Java + Population: 114300 + - ID: 998 + Name: Ciparay + CountryCode: IDN + District: West Java + Population: 111500 + - ID: 999 + Name: Lhokseumawe + CountryCode: IDN + District: Aceh + Population: 109600 + - ID: 1000 + Name: Taman + CountryCode: IDN + District: East Java + Population: 107000 + - ID: 1001 + Name: Depok + CountryCode: IDN + District: Yogyakarta + Population: 106800 + - ID: 1002 + Name: Citeureup + CountryCode: IDN + District: West Java + Population: 105100 + - ID: 1003 + Name: Pemalang + CountryCode: IDN + District: Central Java + Population: 103500 + - ID: 1004 + Name: Klaten + CountryCode: IDN + District: Central Java + Population: 103300 + - ID: 1005 + Name: Salatiga + CountryCode: IDN + District: Central Java + Population: 103000 + - ID: 1006 + Name: Cibinong + CountryCode: IDN + District: West Java + Population: 101300 + - ID: 1007 + Name: Palangka Raya + CountryCode: IDN + District: Kalimantan Tengah + Population: 99693 + - ID: 1008 + Name: Mojokerto + CountryCode: IDN + District: East Java + Population: 96626 + - ID: 1009 + Name: Purwakarta + CountryCode: IDN + District: West Java + Population: 95900 + - ID: 1010 + Name: Garut + CountryCode: IDN + District: West Java + Population: 95800 + - ID: 1011 + Name: Kudus + CountryCode: IDN + District: Central Java + Population: 95300 + - ID: 1012 + Name: Kendari + CountryCode: IDN + District: Sulawesi Tenggara + Population: 94800 + - ID: 1013 + Name: Jaya Pura + CountryCode: IDN + District: West Irian + Population: 94700 + - ID: 1014 + Name: Gorontalo + CountryCode: IDN + District: Sulawesi Utara + Population: 94058 + - ID: 1015 + Name: Majalaya + CountryCode: IDN + District: West Java + Population: 93200 + - ID: 1016 + Name: Pondok Aren + CountryCode: IDN + District: West Java + Population: 92700 + - ID: 1017 + Name: Jombang + CountryCode: IDN + District: East Java + Population: 92600 + - ID: 1018 + Name: Sunggal + CountryCode: IDN + District: Sumatera Utara + Population: 92300 + - ID: 1019 + Name: Batam + CountryCode: IDN + District: Riau + Population: 91871 + - ID: 1020 + Name: Padang Sidempuan + CountryCode: IDN + District: Sumatera Utara + Population: 91200 + - ID: 1021 + Name: Sawangan + CountryCode: IDN + District: West Java + Population: 91100 + - ID: 1022 + Name: Banyuwangi + CountryCode: IDN + District: East Java + Population: 89900 + - ID: 1023 + Name: Tanjung Pinang + CountryCode: IDN + District: Riau + Population: 89900 + - ID: 1024 + Name: Mumbai (Bombay) + CountryCode: IND + District: Maharashtra + Population: 10500000 + - ID: 1025 + Name: Delhi + CountryCode: IND + District: Delhi + Population: 7206704 + - ID: 1026 + Name: Calcutta [Kolkata] + CountryCode: IND + District: West Bengali + Population: 4399819 + - ID: 1027 + Name: Chennai (Madras) + CountryCode: IND + District: Tamil Nadu + Population: 3841396 + - ID: 1028 + Name: Hyderabad + CountryCode: IND + District: Andhra Pradesh + Population: 2964638 + - ID: 1029 + Name: Ahmedabad + CountryCode: IND + District: Gujarat + Population: 2876710 + - ID: 1030 + Name: Bangalore + CountryCode: IND + District: Karnataka + Population: 2660088 + - ID: 1031 + Name: Kanpur + CountryCode: IND + District: Uttar Pradesh + Population: 1874409 + - ID: 1032 + Name: Nagpur + CountryCode: IND + District: Maharashtra + Population: 1624752 + - ID: 1033 + Name: Lucknow + CountryCode: IND + District: Uttar Pradesh + Population: 1619115 + - ID: 1034 + Name: Pune + CountryCode: IND + District: Maharashtra + Population: 1566651 + - ID: 1035 + Name: Surat + CountryCode: IND + District: Gujarat + Population: 1498817 + - ID: 1036 + Name: Jaipur + CountryCode: IND + District: Rajasthan + Population: 1458483 + - ID: 1037 + Name: Indore + CountryCode: IND + District: Madhya Pradesh + Population: 1091674 + - ID: 1038 + Name: Bhopal + CountryCode: IND + District: Madhya Pradesh + Population: 1062771 + - ID: 1039 + Name: Ludhiana + CountryCode: IND + District: Punjab + Population: 1042740 + - ID: 1040 + Name: Vadodara (Baroda) + CountryCode: IND + District: Gujarat + Population: 1031346 + - ID: 1041 + Name: Kalyan + CountryCode: IND + District: Maharashtra + Population: 1014557 + - ID: 1042 + Name: Madurai + CountryCode: IND + District: Tamil Nadu + Population: 977856 + - ID: 1043 + Name: Haora (Howrah) + CountryCode: IND + District: West Bengali + Population: 950435 + - ID: 1044 + Name: Varanasi (Benares) + CountryCode: IND + District: Uttar Pradesh + Population: 929270 + - ID: 1045 + Name: Patna + CountryCode: IND + District: Bihar + Population: 917243 + - ID: 1046 + Name: Srinagar + CountryCode: IND + District: Jammu and Kashmir + Population: 892506 + - ID: 1047 + Name: Agra + CountryCode: IND + District: Uttar Pradesh + Population: 891790 + - ID: 1048 + Name: Coimbatore + CountryCode: IND + District: Tamil Nadu + Population: 816321 + - ID: 1049 + Name: Thane (Thana) + CountryCode: IND + District: Maharashtra + Population: 803389 + - ID: 1050 + Name: Allahabad + CountryCode: IND + District: Uttar Pradesh + Population: 792858 + - ID: 1051 + Name: Meerut + CountryCode: IND + District: Uttar Pradesh + Population: 753778 + - ID: 1052 + Name: Vishakhapatnam + CountryCode: IND + District: Andhra Pradesh + Population: 752037 + - ID: 1053 + Name: Jabalpur + CountryCode: IND + District: Madhya Pradesh + Population: 741927 + - ID: 1054 + Name: Amritsar + CountryCode: IND + District: Punjab + Population: 708835 + - ID: 1055 + Name: Faridabad + CountryCode: IND + District: Haryana + Population: 703592 + - ID: 1056 + Name: Vijayawada + CountryCode: IND + District: Andhra Pradesh + Population: 701827 + - ID: 1057 + Name: Gwalior + CountryCode: IND + District: Madhya Pradesh + Population: 690765 + - ID: 1058 + Name: Jodhpur + CountryCode: IND + District: Rajasthan + Population: 666279 + - ID: 1059 + Name: Nashik (Nasik) + CountryCode: IND + District: Maharashtra + Population: 656925 + - ID: 1060 + Name: Hubli-Dharwad + CountryCode: IND + District: Karnataka + Population: 648298 + - ID: 1061 + Name: Solapur (Sholapur) + CountryCode: IND + District: Maharashtra + Population: 604215 + - ID: 1062 + Name: Ranchi + CountryCode: IND + District: Jharkhand + Population: 599306 + - ID: 1063 + Name: Bareilly + CountryCode: IND + District: Uttar Pradesh + Population: 587211 + - ID: 1064 + Name: Guwahati (Gauhati) + CountryCode: IND + District: Assam + Population: 584342 + - ID: 1065 + Name: Shambajinagar (Aurangabad) + CountryCode: IND + District: Maharashtra + Population: 573272 + - ID: 1066 + Name: Cochin (Kochi) + CountryCode: IND + District: Kerala + Population: 564589 + - ID: 1067 + Name: Rajkot + CountryCode: IND + District: Gujarat + Population: 559407 + - ID: 1068 + Name: Kota + CountryCode: IND + District: Rajasthan + Population: 537371 + - ID: 1069 + Name: Thiruvananthapuram (Trivandrum + CountryCode: IND + District: Kerala + Population: 524006 + - ID: 1070 + Name: Pimpri-Chinchwad + CountryCode: IND + District: Maharashtra + Population: 517083 + - ID: 1071 + Name: Jalandhar (Jullundur) + CountryCode: IND + District: Punjab + Population: 509510 + - ID: 1072 + Name: Gorakhpur + CountryCode: IND + District: Uttar Pradesh + Population: 505566 + - ID: 1073 + Name: Chandigarh + CountryCode: IND + District: Chandigarh + Population: 504094 + - ID: 1074 + Name: Mysore + CountryCode: IND + District: Karnataka + Population: 480692 + - ID: 1075 + Name: Aligarh + CountryCode: IND + District: Uttar Pradesh + Population: 480520 + - ID: 1076 + Name: Guntur + CountryCode: IND + District: Andhra Pradesh + Population: 471051 + - ID: 1077 + Name: Jamshedpur + CountryCode: IND + District: Jharkhand + Population: 460577 + - ID: 1078 + Name: Ghaziabad + CountryCode: IND + District: Uttar Pradesh + Population: 454156 + - ID: 1079 + Name: Warangal + CountryCode: IND + District: Andhra Pradesh + Population: 447657 + - ID: 1080 + Name: Raipur + CountryCode: IND + District: Chhatisgarh + Population: 438639 + - ID: 1081 + Name: Moradabad + CountryCode: IND + District: Uttar Pradesh + Population: 429214 + - ID: 1082 + Name: Durgapur + CountryCode: IND + District: West Bengali + Population: 425836 + - ID: 1083 + Name: Amravati + CountryCode: IND + District: Maharashtra + Population: 421576 + - ID: 1084 + Name: Calicut (Kozhikode) + CountryCode: IND + District: Kerala + Population: 419831 + - ID: 1085 + Name: Bikaner + CountryCode: IND + District: Rajasthan + Population: 416289 + - ID: 1086 + Name: Bhubaneswar + CountryCode: IND + District: Orissa + Population: 411542 + - ID: 1087 + Name: Kolhapur + CountryCode: IND + District: Maharashtra + Population: 406370 + - ID: 1088 + Name: Kataka (Cuttack) + CountryCode: IND + District: Orissa + Population: 403418 + - ID: 1089 + Name: Ajmer + CountryCode: IND + District: Rajasthan + Population: 402700 + - ID: 1090 + Name: Bhavnagar + CountryCode: IND + District: Gujarat + Population: 402338 + - ID: 1091 + Name: Tiruchirapalli + CountryCode: IND + District: Tamil Nadu + Population: 387223 + - ID: 1092 + Name: Bhilai + CountryCode: IND + District: Chhatisgarh + Population: 386159 + - ID: 1093 + Name: Bhiwandi + CountryCode: IND + District: Maharashtra + Population: 379070 + - ID: 1094 + Name: Saharanpur + CountryCode: IND + District: Uttar Pradesh + Population: 374945 + - ID: 1095 + Name: Ulhasnagar + CountryCode: IND + District: Maharashtra + Population: 369077 + - ID: 1096 + Name: Salem + CountryCode: IND + District: Tamil Nadu + Population: 366712 + - ID: 1097 + Name: Ujjain + CountryCode: IND + District: Madhya Pradesh + Population: 362266 + - ID: 1098 + Name: Malegaon + CountryCode: IND + District: Maharashtra + Population: 342595 + - ID: 1099 + Name: Jamnagar + CountryCode: IND + District: Gujarat + Population: 341637 + - ID: 1100 + Name: Bokaro Steel City + CountryCode: IND + District: Jharkhand + Population: 333683 + - ID: 1101 + Name: Akola + CountryCode: IND + District: Maharashtra + Population: 328034 + - ID: 1102 + Name: Belgaum + CountryCode: IND + District: Karnataka + Population: 326399 + - ID: 1103 + Name: Rajahmundry + CountryCode: IND + District: Andhra Pradesh + Population: 324851 + - ID: 1104 + Name: Nellore + CountryCode: IND + District: Andhra Pradesh + Population: 316606 + - ID: 1105 + Name: Udaipur + CountryCode: IND + District: Rajasthan + Population: 308571 + - ID: 1106 + Name: New Bombay + CountryCode: IND + District: Maharashtra + Population: 307297 + - ID: 1107 + Name: Bhatpara + CountryCode: IND + District: West Bengali + Population: 304952 + - ID: 1108 + Name: Gulbarga + CountryCode: IND + District: Karnataka + Population: 304099 + - ID: 1109 + Name: New Delhi + CountryCode: IND + District: Delhi + Population: 301297 + - ID: 1110 + Name: Jhansi + CountryCode: IND + District: Uttar Pradesh + Population: 300850 + - ID: 1111 + Name: Gaya + CountryCode: IND + District: Bihar + Population: 291675 + - ID: 1112 + Name: Kakinada + CountryCode: IND + District: Andhra Pradesh + Population: 279980 + - ID: 1113 + Name: Dhule (Dhulia) + CountryCode: IND + District: Maharashtra + Population: 278317 + - ID: 1114 + Name: Panihati + CountryCode: IND + District: West Bengali + Population: 275990 + - ID: 1115 + Name: Nanded (Nander) + CountryCode: IND + District: Maharashtra + Population: 275083 + - ID: 1116 + Name: Mangalore + CountryCode: IND + District: Karnataka + Population: 273304 + - ID: 1117 + Name: Dehra Dun + CountryCode: IND + District: Uttaranchal + Population: 270159 + - ID: 1118 + Name: Kamarhati + CountryCode: IND + District: West Bengali + Population: 266889 + - ID: 1119 + Name: Davangere + CountryCode: IND + District: Karnataka + Population: 266082 + - ID: 1120 + Name: Asansol + CountryCode: IND + District: West Bengali + Population: 262188 + - ID: 1121 + Name: Bhagalpur + CountryCode: IND + District: Bihar + Population: 253225 + - ID: 1122 + Name: Bellary + CountryCode: IND + District: Karnataka + Population: 245391 + - ID: 1123 + Name: Barddhaman (Burdwan) + CountryCode: IND + District: West Bengali + Population: 245079 + - ID: 1124 + Name: Rampur + CountryCode: IND + District: Uttar Pradesh + Population: 243742 + - ID: 1125 + Name: Jalgaon + CountryCode: IND + District: Maharashtra + Population: 242193 + - ID: 1126 + Name: Muzaffarpur + CountryCode: IND + District: Bihar + Population: 241107 + - ID: 1127 + Name: Nizamabad + CountryCode: IND + District: Andhra Pradesh + Population: 241034 + - ID: 1128 + Name: Muzaffarnagar + CountryCode: IND + District: Uttar Pradesh + Population: 240609 + - ID: 1129 + Name: Patiala + CountryCode: IND + District: Punjab + Population: 238368 + - ID: 1130 + Name: Shahjahanpur + CountryCode: IND + District: Uttar Pradesh + Population: 237713 + - ID: 1131 + Name: Kurnool + CountryCode: IND + District: Andhra Pradesh + Population: 236800 + - ID: 1132 + Name: Tiruppur (Tirupper) + CountryCode: IND + District: Tamil Nadu + Population: 235661 + - ID: 1133 + Name: Rohtak + CountryCode: IND + District: Haryana + Population: 233400 + - ID: 1134 + Name: South Dum Dum + CountryCode: IND + District: West Bengali + Population: 232811 + - ID: 1135 + Name: Mathura + CountryCode: IND + District: Uttar Pradesh + Population: 226691 + - ID: 1136 + Name: Chandrapur + CountryCode: IND + District: Maharashtra + Population: 226105 + - ID: 1137 + Name: Barahanagar (Baranagar) + CountryCode: IND + District: West Bengali + Population: 224821 + - ID: 1138 + Name: Darbhanga + CountryCode: IND + District: Bihar + Population: 218391 + - ID: 1139 + Name: Siliguri (Shiliguri) + CountryCode: IND + District: West Bengali + Population: 216950 + - ID: 1140 + Name: Raurkela + CountryCode: IND + District: Orissa + Population: 215489 + - ID: 1141 + Name: Ambattur + CountryCode: IND + District: Tamil Nadu + Population: 215424 + - ID: 1142 + Name: Panipat + CountryCode: IND + District: Haryana + Population: 215218 + - ID: 1143 + Name: Firozabad + CountryCode: IND + District: Uttar Pradesh + Population: 215128 + - ID: 1144 + Name: Ichalkaranji + CountryCode: IND + District: Maharashtra + Population: 214950 + - ID: 1145 + Name: Jammu + CountryCode: IND + District: Jammu and Kashmir + Population: 214737 + - ID: 1146 + Name: Ramagundam + CountryCode: IND + District: Andhra Pradesh + Population: 214384 + - ID: 1147 + Name: Eluru + CountryCode: IND + District: Andhra Pradesh + Population: 212866 + - ID: 1148 + Name: Brahmapur + CountryCode: IND + District: Orissa + Population: 210418 + - ID: 1149 + Name: Alwar + CountryCode: IND + District: Rajasthan + Population: 205086 + - ID: 1150 + Name: Pondicherry + CountryCode: IND + District: Pondicherry + Population: 203065 + - ID: 1151 + Name: Thanjavur + CountryCode: IND + District: Tamil Nadu + Population: 202013 + - ID: 1152 + Name: Bihar Sharif + CountryCode: IND + District: Bihar + Population: 201323 + - ID: 1153 + Name: Tuticorin + CountryCode: IND + District: Tamil Nadu + Population: 199854 + - ID: 1154 + Name: Imphal + CountryCode: IND + District: Manipur + Population: 198535 + - ID: 1155 + Name: Latur + CountryCode: IND + District: Maharashtra + Population: 197408 + - ID: 1156 + Name: Sagar + CountryCode: IND + District: Madhya Pradesh + Population: 195346 + - ID: 1157 + Name: Farrukhabad-cum-Fatehgarh + CountryCode: IND + District: Uttar Pradesh + Population: 194567 + - ID: 1158 + Name: Sangli + CountryCode: IND + District: Maharashtra + Population: 193197 + - ID: 1159 + Name: Parbhani + CountryCode: IND + District: Maharashtra + Population: 190255 + - ID: 1160 + Name: Nagar Coil + CountryCode: IND + District: Tamil Nadu + Population: 190084 + - ID: 1161 + Name: Bijapur + CountryCode: IND + District: Karnataka + Population: 186939 + - ID: 1162 + Name: Kukatpalle + CountryCode: IND + District: Andhra Pradesh + Population: 185378 + - ID: 1163 + Name: Bally + CountryCode: IND + District: West Bengali + Population: 184474 + - ID: 1164 + Name: Bhilwara + CountryCode: IND + District: Rajasthan + Population: 183965 + - ID: 1165 + Name: Ratlam + CountryCode: IND + District: Madhya Pradesh + Population: 183375 + - ID: 1166 + Name: Avadi + CountryCode: IND + District: Tamil Nadu + Population: 183215 + - ID: 1167 + Name: Dindigul + CountryCode: IND + District: Tamil Nadu + Population: 182477 + - ID: 1168 + Name: Ahmadnagar + CountryCode: IND + District: Maharashtra + Population: 181339 + - ID: 1169 + Name: Bilaspur + CountryCode: IND + District: Chhatisgarh + Population: 179833 + - ID: 1170 + Name: Shimoga + CountryCode: IND + District: Karnataka + Population: 179258 + - ID: 1171 + Name: Kharagpur + CountryCode: IND + District: West Bengali + Population: 177989 + - ID: 1172 + Name: Mira Bhayandar + CountryCode: IND + District: Maharashtra + Population: 175372 + - ID: 1173 + Name: Vellore + CountryCode: IND + District: Tamil Nadu + Population: 175061 + - ID: 1174 + Name: Jalna + CountryCode: IND + District: Maharashtra + Population: 174985 + - ID: 1175 + Name: Burnpur + CountryCode: IND + District: West Bengali + Population: 174933 + - ID: 1176 + Name: Anantapur + CountryCode: IND + District: Andhra Pradesh + Population: 174924 + - ID: 1177 + Name: Allappuzha (Alleppey) + CountryCode: IND + District: Kerala + Population: 174666 + - ID: 1178 + Name: Tirupati + CountryCode: IND + District: Andhra Pradesh + Population: 174369 + - ID: 1179 + Name: Karnal + CountryCode: IND + District: Haryana + Population: 173751 + - ID: 1180 + Name: Burhanpur + CountryCode: IND + District: Madhya Pradesh + Population: 172710 + - ID: 1181 + Name: Hisar (Hissar) + CountryCode: IND + District: Haryana + Population: 172677 + - ID: 1182 + Name: Tiruvottiyur + CountryCode: IND + District: Tamil Nadu + Population: 172562 + - ID: 1183 + Name: Mirzapur-cum-Vindhyachal + CountryCode: IND + District: Uttar Pradesh + Population: 169336 + - ID: 1184 + Name: Secunderabad + CountryCode: IND + District: Andhra Pradesh + Population: 167461 + - ID: 1185 + Name: Nadiad + CountryCode: IND + District: Gujarat + Population: 167051 + - ID: 1186 + Name: Dewas + CountryCode: IND + District: Madhya Pradesh + Population: 164364 + - ID: 1187 + Name: Murwara (Katni) + CountryCode: IND + District: Madhya Pradesh + Population: 163431 + - ID: 1188 + Name: Ganganagar + CountryCode: IND + District: Rajasthan + Population: 161482 + - ID: 1189 + Name: Vizianagaram + CountryCode: IND + District: Andhra Pradesh + Population: 160359 + - ID: 1190 + Name: Erode + CountryCode: IND + District: Tamil Nadu + Population: 159232 + - ID: 1191 + Name: Machilipatnam (Masulipatam) + CountryCode: IND + District: Andhra Pradesh + Population: 159110 + - ID: 1192 + Name: Bhatinda (Bathinda) + CountryCode: IND + District: Punjab + Population: 159042 + - ID: 1193 + Name: Raichur + CountryCode: IND + District: Karnataka + Population: 157551 + - ID: 1194 + Name: Agartala + CountryCode: IND + District: Tripura + Population: 157358 + - ID: 1195 + Name: Arrah (Ara) + CountryCode: IND + District: Bihar + Population: 157082 + - ID: 1196 + Name: Satna + CountryCode: IND + District: Madhya Pradesh + Population: 156630 + - ID: 1197 + Name: Lalbahadur Nagar + CountryCode: IND + District: Andhra Pradesh + Population: 155500 + - ID: 1198 + Name: Aizawl + CountryCode: IND + District: Mizoram + Population: 155240 + - ID: 1199 + Name: Uluberia + CountryCode: IND + District: West Bengali + Population: 155172 + - ID: 1200 + Name: Katihar + CountryCode: IND + District: Bihar + Population: 154367 + - ID: 1201 + Name: Cuddalore + CountryCode: IND + District: Tamil Nadu + Population: 153086 + - ID: 1202 + Name: Hugli-Chinsurah + CountryCode: IND + District: West Bengali + Population: 151806 + - ID: 1203 + Name: Dhanbad + CountryCode: IND + District: Jharkhand + Population: 151789 + - ID: 1204 + Name: Raiganj + CountryCode: IND + District: West Bengali + Population: 151045 + - ID: 1205 + Name: Sambhal + CountryCode: IND + District: Uttar Pradesh + Population: 150869 + - ID: 1206 + Name: Durg + CountryCode: IND + District: Chhatisgarh + Population: 150645 + - ID: 1207 + Name: Munger (Monghyr) + CountryCode: IND + District: Bihar + Population: 150112 + - ID: 1208 + Name: Kanchipuram + CountryCode: IND + District: Tamil Nadu + Population: 150100 + - ID: 1209 + Name: North Dum Dum + CountryCode: IND + District: West Bengali + Population: 149965 + - ID: 1210 + Name: Karimnagar + CountryCode: IND + District: Andhra Pradesh + Population: 148583 + - ID: 1211 + Name: Bharatpur + CountryCode: IND + District: Rajasthan + Population: 148519 + - ID: 1212 + Name: Sikar + CountryCode: IND + District: Rajasthan + Population: 148272 + - ID: 1213 + Name: Hardwar (Haridwar) + CountryCode: IND + District: Uttaranchal + Population: 147305 + - ID: 1214 + Name: Dabgram + CountryCode: IND + District: West Bengali + Population: 147217 + - ID: 1215 + Name: Morena + CountryCode: IND + District: Madhya Pradesh + Population: 147124 + - ID: 1216 + Name: Noida + CountryCode: IND + District: Uttar Pradesh + Population: 146514 + - ID: 1217 + Name: Hapur + CountryCode: IND + District: Uttar Pradesh + Population: 146262 + - ID: 1218 + Name: Bhusawal + CountryCode: IND + District: Maharashtra + Population: 145143 + - ID: 1219 + Name: Khandwa + CountryCode: IND + District: Madhya Pradesh + Population: 145133 + - ID: 1220 + Name: Yamuna Nagar + CountryCode: IND + District: Haryana + Population: 144346 + - ID: 1221 + Name: Sonipat (Sonepat) + CountryCode: IND + District: Haryana + Population: 143922 + - ID: 1222 + Name: Tenali + CountryCode: IND + District: Andhra Pradesh + Population: 143726 + - ID: 1223 + Name: Raurkela Civil Township + CountryCode: IND + District: Orissa + Population: 140408 + - ID: 1224 + Name: Kollam (Quilon) + CountryCode: IND + District: Kerala + Population: 139852 + - ID: 1225 + Name: Kumbakonam + CountryCode: IND + District: Tamil Nadu + Population: 139483 + - ID: 1226 + Name: Ingraj Bazar (English Bazar) + CountryCode: IND + District: West Bengali + Population: 139204 + - ID: 1227 + Name: Timkur + CountryCode: IND + District: Karnataka + Population: 138903 + - ID: 1228 + Name: Amroha + CountryCode: IND + District: Uttar Pradesh + Population: 137061 + - ID: 1229 + Name: Serampore + CountryCode: IND + District: West Bengali + Population: 137028 + - ID: 1230 + Name: Chapra + CountryCode: IND + District: Bihar + Population: 136877 + - ID: 1231 + Name: Pali + CountryCode: IND + District: Rajasthan + Population: 136842 + - ID: 1232 + Name: Maunath Bhanjan + CountryCode: IND + District: Uttar Pradesh + Population: 136697 + - ID: 1233 + Name: Adoni + CountryCode: IND + District: Andhra Pradesh + Population: 136182 + - ID: 1234 + Name: Jaunpur + CountryCode: IND + District: Uttar Pradesh + Population: 136062 + - ID: 1235 + Name: Tirunelveli + CountryCode: IND + District: Tamil Nadu + Population: 135825 + - ID: 1236 + Name: Bahraich + CountryCode: IND + District: Uttar Pradesh + Population: 135400 + - ID: 1237 + Name: Gadag Betigeri + CountryCode: IND + District: Karnataka + Population: 134051 + - ID: 1238 + Name: Proddatur + CountryCode: IND + District: Andhra Pradesh + Population: 133914 + - ID: 1239 + Name: Chittoor + CountryCode: IND + District: Andhra Pradesh + Population: 133462 + - ID: 1240 + Name: Barrackpur + CountryCode: IND + District: West Bengali + Population: 133265 + - ID: 1241 + Name: Bharuch (Broach) + CountryCode: IND + District: Gujarat + Population: 133102 + - ID: 1242 + Name: Naihati + CountryCode: IND + District: West Bengali + Population: 132701 + - ID: 1243 + Name: Shillong + CountryCode: IND + District: Meghalaya + Population: 131719 + - ID: 1244 + Name: Sambalpur + CountryCode: IND + District: Orissa + Population: 131138 + - ID: 1245 + Name: Junagadh + CountryCode: IND + District: Gujarat + Population: 130484 + - ID: 1246 + Name: Rae Bareli + CountryCode: IND + District: Uttar Pradesh + Population: 129904 + - ID: 1247 + Name: Rewa + CountryCode: IND + District: Madhya Pradesh + Population: 128981 + - ID: 1248 + Name: Gurgaon + CountryCode: IND + District: Haryana + Population: 128608 + - ID: 1249 + Name: Khammam + CountryCode: IND + District: Andhra Pradesh + Population: 127992 + - ID: 1250 + Name: Bulandshahr + CountryCode: IND + District: Uttar Pradesh + Population: 127201 + - ID: 1251 + Name: Navsari + CountryCode: IND + District: Gujarat + Population: 126089 + - ID: 1252 + Name: Malkajgiri + CountryCode: IND + District: Andhra Pradesh + Population: 126066 + - ID: 1253 + Name: Midnapore (Medinipur) + CountryCode: IND + District: West Bengali + Population: 125498 + - ID: 1254 + Name: Miraj + CountryCode: IND + District: Maharashtra + Population: 125407 + - ID: 1255 + Name: Raj Nandgaon + CountryCode: IND + District: Chhatisgarh + Population: 125371 + - ID: 1256 + Name: Alandur + CountryCode: IND + District: Tamil Nadu + Population: 125244 + - ID: 1257 + Name: Puri + CountryCode: IND + District: Orissa + Population: 125199 + - ID: 1258 + Name: Navadwip + CountryCode: IND + District: West Bengali + Population: 125037 + - ID: 1259 + Name: Sirsa + CountryCode: IND + District: Haryana + Population: 125000 + - ID: 1260 + Name: Korba + CountryCode: IND + District: Chhatisgarh + Population: 124501 + - ID: 1261 + Name: Faizabad + CountryCode: IND + District: Uttar Pradesh + Population: 124437 + - ID: 1262 + Name: Etawah + CountryCode: IND + District: Uttar Pradesh + Population: 124072 + - ID: 1263 + Name: Pathankot + CountryCode: IND + District: Punjab + Population: 123930 + - ID: 1264 + Name: Gandhinagar + CountryCode: IND + District: Gujarat + Population: 123359 + - ID: 1265 + Name: Palghat (Palakkad) + CountryCode: IND + District: Kerala + Population: 123289 + - ID: 1266 + Name: Veraval + CountryCode: IND + District: Gujarat + Population: 123000 + - ID: 1267 + Name: Hoshiarpur + CountryCode: IND + District: Punjab + Population: 122705 + - ID: 1268 + Name: Ambala + CountryCode: IND + District: Haryana + Population: 122596 + - ID: 1269 + Name: Sitapur + CountryCode: IND + District: Uttar Pradesh + Population: 121842 + - ID: 1270 + Name: Bhiwani + CountryCode: IND + District: Haryana + Population: 121629 + - ID: 1271 + Name: Cuddapah + CountryCode: IND + District: Andhra Pradesh + Population: 121463 + - ID: 1272 + Name: Bhimavaram + CountryCode: IND + District: Andhra Pradesh + Population: 121314 + - ID: 1273 + Name: Krishnanagar + CountryCode: IND + District: West Bengali + Population: 121110 + - ID: 1274 + Name: Chandannagar + CountryCode: IND + District: West Bengali + Population: 120378 + - ID: 1275 + Name: Mandya + CountryCode: IND + District: Karnataka + Population: 120265 + - ID: 1276 + Name: Dibrugarh + CountryCode: IND + District: Assam + Population: 120127 + - ID: 1277 + Name: Nandyal + CountryCode: IND + District: Andhra Pradesh + Population: 119813 + - ID: 1278 + Name: Balurghat + CountryCode: IND + District: West Bengali + Population: 119796 + - ID: 1279 + Name: Neyveli + CountryCode: IND + District: Tamil Nadu + Population: 118080 + - ID: 1280 + Name: Fatehpur + CountryCode: IND + District: Uttar Pradesh + Population: 117675 + - ID: 1281 + Name: Mahbubnagar + CountryCode: IND + District: Andhra Pradesh + Population: 116833 + - ID: 1282 + Name: Budaun + CountryCode: IND + District: Uttar Pradesh + Population: 116695 + - ID: 1283 + Name: Porbandar + CountryCode: IND + District: Gujarat + Population: 116671 + - ID: 1284 + Name: Silchar + CountryCode: IND + District: Assam + Population: 115483 + - ID: 1285 + Name: Berhampore (Baharampur) + CountryCode: IND + District: West Bengali + Population: 115144 + - ID: 1286 + Name: Purnea (Purnia) + CountryCode: IND + District: Jharkhand + Population: 114912 + - ID: 1287 + Name: Bankura + CountryCode: IND + District: West Bengali + Population: 114876 + - ID: 1288 + Name: Rajapalaiyam + CountryCode: IND + District: Tamil Nadu + Population: 114202 + - ID: 1289 + Name: Titagarh + CountryCode: IND + District: West Bengali + Population: 114085 + - ID: 1290 + Name: Halisahar + CountryCode: IND + District: West Bengali + Population: 114028 + - ID: 1291 + Name: Hathras + CountryCode: IND + District: Uttar Pradesh + Population: 113285 + - ID: 1292 + Name: Bhir (Bid) + CountryCode: IND + District: Maharashtra + Population: 112434 + - ID: 1293 + Name: Pallavaram + CountryCode: IND + District: Tamil Nadu + Population: 111866 + - ID: 1294 + Name: Anand + CountryCode: IND + District: Gujarat + Population: 110266 + - ID: 1295 + Name: Mango + CountryCode: IND + District: Jharkhand + Population: 110024 + - ID: 1296 + Name: Santipur + CountryCode: IND + District: West Bengali + Population: 109956 + - ID: 1297 + Name: Bhind + CountryCode: IND + District: Madhya Pradesh + Population: 109755 + - ID: 1298 + Name: Gondiya + CountryCode: IND + District: Maharashtra + Population: 109470 + - ID: 1299 + Name: Tiruvannamalai + CountryCode: IND + District: Tamil Nadu + Population: 109196 + - ID: 1300 + Name: Yeotmal (Yavatmal) + CountryCode: IND + District: Maharashtra + Population: 108578 + - ID: 1301 + Name: Kulti-Barakar + CountryCode: IND + District: West Bengali + Population: 108518 + - ID: 1302 + Name: Moga + CountryCode: IND + District: Punjab + Population: 108304 + - ID: 1303 + Name: Shivapuri + CountryCode: IND + District: Madhya Pradesh + Population: 108277 + - ID: 1304 + Name: Bidar + CountryCode: IND + District: Karnataka + Population: 108016 + - ID: 1305 + Name: Guntakal + CountryCode: IND + District: Andhra Pradesh + Population: 107592 + - ID: 1306 + Name: Unnao + CountryCode: IND + District: Uttar Pradesh + Population: 107425 + - ID: 1307 + Name: Barasat + CountryCode: IND + District: West Bengali + Population: 107365 + - ID: 1308 + Name: Tambaram + CountryCode: IND + District: Tamil Nadu + Population: 107187 + - ID: 1309 + Name: Abohar + CountryCode: IND + District: Punjab + Population: 107163 + - ID: 1310 + Name: Pilibhit + CountryCode: IND + District: Uttar Pradesh + Population: 106605 + - ID: 1311 + Name: Valparai + CountryCode: IND + District: Tamil Nadu + Population: 106523 + - ID: 1312 + Name: Gonda + CountryCode: IND + District: Uttar Pradesh + Population: 106078 + - ID: 1313 + Name: Surendranagar + CountryCode: IND + District: Gujarat + Population: 105973 + - ID: 1314 + Name: Qutubullapur + CountryCode: IND + District: Andhra Pradesh + Population: 105380 + - ID: 1315 + Name: Beawar + CountryCode: IND + District: Rajasthan + Population: 105363 + - ID: 1316 + Name: Hindupur + CountryCode: IND + District: Andhra Pradesh + Population: 104651 + - ID: 1317 + Name: Gandhidham + CountryCode: IND + District: Gujarat + Population: 104585 + - ID: 1318 + Name: Haldwani-cum-Kathgodam + CountryCode: IND + District: Uttaranchal + Population: 104195 + - ID: 1319 + Name: Tellicherry (Thalassery) + CountryCode: IND + District: Kerala + Population: 103579 + - ID: 1320 + Name: Wardha + CountryCode: IND + District: Maharashtra + Population: 102985 + - ID: 1321 + Name: Rishra + CountryCode: IND + District: West Bengali + Population: 102649 + - ID: 1322 + Name: Bhuj + CountryCode: IND + District: Gujarat + Population: 102176 + - ID: 1323 + Name: Modinagar + CountryCode: IND + District: Uttar Pradesh + Population: 101660 + - ID: 1324 + Name: Gudivada + CountryCode: IND + District: Andhra Pradesh + Population: 101656 + - ID: 1325 + Name: Basirhat + CountryCode: IND + District: West Bengali + Population: 101409 + - ID: 1326 + Name: Uttarpara-Kotrung + CountryCode: IND + District: West Bengali + Population: 100867 + - ID: 1327 + Name: Ongole + CountryCode: IND + District: Andhra Pradesh + Population: 100836 + - ID: 1328 + Name: North Barrackpur + CountryCode: IND + District: West Bengali + Population: 100513 + - ID: 1329 + Name: Guna + CountryCode: IND + District: Madhya Pradesh + Population: 100490 + - ID: 1330 + Name: Haldia + CountryCode: IND + District: West Bengali + Population: 100347 + - ID: 1331 + Name: Habra + CountryCode: IND + District: West Bengali + Population: 100223 + - ID: 1332 + Name: Kanchrapara + CountryCode: IND + District: West Bengali + Population: 100194 + - ID: 1333 + Name: Tonk + CountryCode: IND + District: Rajasthan + Population: 100079 + - ID: 1334 + Name: Champdani + CountryCode: IND + District: West Bengali + Population: 98818 + - ID: 1335 + Name: Orai + CountryCode: IND + District: Uttar Pradesh + Population: 98640 + - ID: 1336 + Name: Pudukkottai + CountryCode: IND + District: Tamil Nadu + Population: 98619 + - ID: 1337 + Name: Sasaram + CountryCode: IND + District: Bihar + Population: 98220 + - ID: 1338 + Name: Hazaribag + CountryCode: IND + District: Jharkhand + Population: 97712 + - ID: 1339 + Name: Palayankottai + CountryCode: IND + District: Tamil Nadu + Population: 97662 + - ID: 1340 + Name: Banda + CountryCode: IND + District: Uttar Pradesh + Population: 97227 + - ID: 1341 + Name: Godhra + CountryCode: IND + District: Gujarat + Population: 96813 + - ID: 1342 + Name: Hospet + CountryCode: IND + District: Karnataka + Population: 96322 + - ID: 1343 + Name: Ashoknagar-Kalyangarh + CountryCode: IND + District: West Bengali + Population: 96315 + - ID: 1344 + Name: Achalpur + CountryCode: IND + District: Maharashtra + Population: 96216 + - ID: 1345 + Name: Patan + CountryCode: IND + District: Gujarat + Population: 96109 + - ID: 1346 + Name: Mandasor + CountryCode: IND + District: Madhya Pradesh + Population: 95758 + - ID: 1347 + Name: Damoh + CountryCode: IND + District: Madhya Pradesh + Population: 95661 + - ID: 1348 + Name: Satara + CountryCode: IND + District: Maharashtra + Population: 95133 + - ID: 1349 + Name: Meerut Cantonment + CountryCode: IND + District: Uttar Pradesh + Population: 94876 + - ID: 1350 + Name: Dehri + CountryCode: IND + District: Bihar + Population: 94526 + - ID: 1351 + Name: Delhi Cantonment + CountryCode: IND + District: Delhi + Population: 94326 + - ID: 1352 + Name: Chhindwara + CountryCode: IND + District: Madhya Pradesh + Population: 93731 + - ID: 1353 + Name: Bansberia + CountryCode: IND + District: West Bengali + Population: 93447 + - ID: 1354 + Name: Nagaon + CountryCode: IND + District: Assam + Population: 93350 + - ID: 1355 + Name: Kanpur Cantonment + CountryCode: IND + District: Uttar Pradesh + Population: 93109 + - ID: 1356 + Name: Vidisha + CountryCode: IND + District: Madhya Pradesh + Population: 92917 + - ID: 1357 + Name: Bettiah + CountryCode: IND + District: Bihar + Population: 92583 + - ID: 1358 + Name: Purulia + CountryCode: IND + District: Jharkhand + Population: 92574 + - ID: 1359 + Name: Hassan + CountryCode: IND + District: Karnataka + Population: 90803 + - ID: 1360 + Name: Ambala Sadar + CountryCode: IND + District: Haryana + Population: 90712 + - ID: 1361 + Name: Baidyabati + CountryCode: IND + District: West Bengali + Population: 90601 + - ID: 1362 + Name: Morvi + CountryCode: IND + District: Gujarat + Population: 90357 + - ID: 1363 + Name: Raigarh + CountryCode: IND + District: Chhatisgarh + Population: 89166 + - ID: 1364 + Name: Vejalpur + CountryCode: IND + District: Gujarat + Population: 89053 + - ID: 1365 + Name: Baghdad + CountryCode: IRQ + District: Baghdad + Population: 4336000 + - ID: 1366 + Name: Mosul + CountryCode: IRQ + District: Ninawa + Population: 879000 + - ID: 1367 + Name: Irbil + CountryCode: IRQ + District: Irbil + Population: 485968 + - ID: 1368 + Name: Kirkuk + CountryCode: IRQ + District: al-Tamim + Population: 418624 + - ID: 1369 + Name: Basra + CountryCode: IRQ + District: Basra + Population: 406296 + - ID: 1370 + Name: al-Sulaymaniya + CountryCode: IRQ + District: al-Sulaymaniya + Population: 364096 + - ID: 1371 + Name: al-Najaf + CountryCode: IRQ + District: al-Najaf + Population: 309010 + - ID: 1372 + Name: Karbala + CountryCode: IRQ + District: Karbala + Population: 296705 + - ID: 1373 + Name: al-Hilla + CountryCode: IRQ + District: Babil + Population: 268834 + - ID: 1374 + Name: al-Nasiriya + CountryCode: IRQ + District: DhiQar + Population: 265937 + - ID: 1375 + Name: al-Amara + CountryCode: IRQ + District: Maysan + Population: 208797 + - ID: 1376 + Name: al-Diwaniya + CountryCode: IRQ + District: al-Qadisiya + Population: 196519 + - ID: 1377 + Name: al-Ramadi + CountryCode: IRQ + District: al-Anbar + Population: 192556 + - ID: 1378 + Name: al-Kut + CountryCode: IRQ + District: Wasit + Population: 183183 + - ID: 1379 + Name: Baquba + CountryCode: IRQ + District: Diyala + Population: 114516 + - ID: 1380 + Name: Teheran + CountryCode: IRN + District: Teheran + Population: 6758845 + - ID: 1381 + Name: Mashhad + CountryCode: IRN + District: Khorasan + Population: 1887405 + - ID: 1382 + Name: Esfahan + CountryCode: IRN + District: Esfahan + Population: 1266072 + - ID: 1383 + Name: Tabriz + CountryCode: IRN + District: East Azerbaidzan + Population: 1191043 + - ID: 1384 + Name: Shiraz + CountryCode: IRN + District: Fars + Population: 1053025 + - ID: 1385 + Name: Karaj + CountryCode: IRN + District: Teheran + Population: 940968 + - ID: 1386 + Name: Ahvaz + CountryCode: IRN + District: Khuzestan + Population: 804980 + - ID: 1387 + Name: Qom + CountryCode: IRN + District: Qom + Population: 777677 + - ID: 1388 + Name: Kermanshah + CountryCode: IRN + District: Kermanshah + Population: 692986 + - ID: 1389 + Name: Urmia + CountryCode: IRN + District: West Azerbaidzan + Population: 435200 + - ID: 1390 + Name: Zahedan + CountryCode: IRN + District: Sistan va Baluchesta + Population: 419518 + - ID: 1391 + Name: Rasht + CountryCode: IRN + District: Gilan + Population: 417748 + - ID: 1392 + Name: Hamadan + CountryCode: IRN + District: Hamadan + Population: 401281 + - ID: 1393 + Name: Kerman + CountryCode: IRN + District: Kerman + Population: 384991 + - ID: 1394 + Name: Arak + CountryCode: IRN + District: Markazi + Population: 380755 + - ID: 1395 + Name: Ardebil + CountryCode: IRN + District: Ardebil + Population: 340386 + - ID: 1396 + Name: Yazd + CountryCode: IRN + District: Yazd + Population: 326776 + - ID: 1397 + Name: Qazvin + CountryCode: IRN + District: Qazvin + Population: 291117 + - ID: 1398 + Name: Zanjan + CountryCode: IRN + District: Zanjan + Population: 286295 + - ID: 1399 + Name: Sanandaj + CountryCode: IRN + District: Kordestan + Population: 277808 + - ID: 1400 + Name: Bandar-e-Abbas + CountryCode: IRN + District: Hormozgan + Population: 273578 + - ID: 1401 + Name: Khorramabad + CountryCode: IRN + District: Lorestan + Population: 272815 + - ID: 1402 + Name: Eslamshahr + CountryCode: IRN + District: Teheran + Population: 265450 + - ID: 1403 + Name: Borujerd + CountryCode: IRN + District: Lorestan + Population: 217804 + - ID: 1404 + Name: Abadan + CountryCode: IRN + District: Khuzestan + Population: 206073 + - ID: 1405 + Name: Dezful + CountryCode: IRN + District: Khuzestan + Population: 202639 + - ID: 1406 + Name: Kashan + CountryCode: IRN + District: Esfahan + Population: 201372 + - ID: 1407 + Name: Sari + CountryCode: IRN + District: Mazandaran + Population: 195882 + - ID: 1408 + Name: Gorgan + CountryCode: IRN + District: Golestan + Population: 188710 + - ID: 1409 + Name: Najafabad + CountryCode: IRN + District: Esfahan + Population: 178498 + - ID: 1410 + Name: Sabzevar + CountryCode: IRN + District: Khorasan + Population: 170738 + - ID: 1411 + Name: Khomeynishahr + CountryCode: IRN + District: Esfahan + Population: 165888 + - ID: 1412 + Name: Amol + CountryCode: IRN + District: Mazandaran + Population: 159092 + - ID: 1413 + Name: Neyshabur + CountryCode: IRN + District: Khorasan + Population: 158847 + - ID: 1414 + Name: Babol + CountryCode: IRN + District: Mazandaran + Population: 158346 + - ID: 1415 + Name: Khoy + CountryCode: IRN + District: West Azerbaidzan + Population: 148944 + - ID: 1416 + Name: Malayer + CountryCode: IRN + District: Hamadan + Population: 144373 + - ID: 1417 + Name: Bushehr + CountryCode: IRN + District: Bushehr + Population: 143641 + - ID: 1418 + Name: Qaemshahr + CountryCode: IRN + District: Mazandaran + Population: 143286 + - ID: 1419 + Name: Qarchak + CountryCode: IRN + District: Teheran + Population: 142690 + - ID: 1420 + Name: Qods + CountryCode: IRN + District: Teheran + Population: 138278 + - ID: 1421 + Name: Sirjan + CountryCode: IRN + District: Kerman + Population: 135024 + - ID: 1422 + Name: Bojnurd + CountryCode: IRN + District: Khorasan + Population: 134835 + - ID: 1423 + Name: Maragheh + CountryCode: IRN + District: East Azerbaidzan + Population: 132318 + - ID: 1424 + Name: Birjand + CountryCode: IRN + District: Khorasan + Population: 127608 + - ID: 1425 + Name: Ilam + CountryCode: IRN + District: Ilam + Population: 126346 + - ID: 1426 + Name: Bukan + CountryCode: IRN + District: West Azerbaidzan + Population: 120020 + - ID: 1427 + Name: Masjed-e-Soleyman + CountryCode: IRN + District: Khuzestan + Population: 116883 + - ID: 1428 + Name: Saqqez + CountryCode: IRN + District: Kordestan + Population: 115394 + - ID: 1429 + Name: Gonbad-e Qabus + CountryCode: IRN + District: Mazandaran + Population: 111253 + - ID: 1430 + Name: Saveh + CountryCode: IRN + District: Qom + Population: 111245 + - ID: 1431 + Name: Mahabad + CountryCode: IRN + District: West Azerbaidzan + Population: 107799 + - ID: 1432 + Name: Varamin + CountryCode: IRN + District: Teheran + Population: 107233 + - ID: 1433 + Name: Andimeshk + CountryCode: IRN + District: Khuzestan + Population: 106923 + - ID: 1434 + Name: Khorramshahr + CountryCode: IRN + District: Khuzestan + Population: 105636 + - ID: 1435 + Name: Shahrud + CountryCode: IRN + District: Semnan + Population: 104765 + - ID: 1436 + Name: Marv Dasht + CountryCode: IRN + District: Fars + Population: 103579 + - ID: 1437 + Name: Zabol + CountryCode: IRN + District: Sistan va Baluchesta + Population: 100887 + - ID: 1438 + Name: Shahr-e Kord + CountryCode: IRN + District: Chaharmahal va Bakht + Population: 100477 + - ID: 1439 + Name: Bandar-e Anzali + CountryCode: IRN + District: Gilan + Population: 98500 + - ID: 1440 + Name: Rafsanjan + CountryCode: IRN + District: Kerman + Population: 98300 + - ID: 1441 + Name: Marand + CountryCode: IRN + District: East Azerbaidzan + Population: 96400 + - ID: 1442 + Name: Torbat-e Heydariyeh + CountryCode: IRN + District: Khorasan + Population: 94600 + - ID: 1443 + Name: Jahrom + CountryCode: IRN + District: Fars + Population: 94200 + - ID: 1444 + Name: Semnan + CountryCode: IRN + District: Semnan + Population: 91045 + - ID: 1445 + Name: Miandoab + CountryCode: IRN + District: West Azerbaidzan + Population: 90100 + - ID: 1446 + Name: Qomsheh + CountryCode: IRN + District: Esfahan + Population: 89800 + - ID: 1447 + Name: Dublin + CountryCode: IRL + District: Leinster + Population: 481854 + - ID: 1448 + Name: Cork + CountryCode: IRL + District: Munster + Population: 127187 + - ID: 1449 + Name: Reykjavík + CountryCode: ISL + District: Höfuðborgarsvæði + Population: 109184 + - ID: 1450 + Name: Jerusalem + CountryCode: ISR + District: Jerusalem + Population: 633700 + - ID: 1451 + Name: Tel Aviv-Jaffa + CountryCode: ISR + District: Tel Aviv + Population: 348100 + - ID: 1452 + Name: Haifa + CountryCode: ISR + District: Haifa + Population: 265700 + - ID: 1453 + Name: Rishon Le Ziyyon + CountryCode: ISR + District: Ha Merkaz + Population: 188200 + - ID: 1454 + Name: Beerseba + CountryCode: ISR + District: Ha Darom + Population: 163700 + - ID: 1455 + Name: Holon + CountryCode: ISR + District: Tel Aviv + Population: 163100 + - ID: 1456 + Name: Petah Tiqwa + CountryCode: ISR + District: Ha Merkaz + Population: 159400 + - ID: 1457 + Name: Ashdod + CountryCode: ISR + District: Ha Darom + Population: 155800 + - ID: 1458 + Name: Netanya + CountryCode: ISR + District: Ha Merkaz + Population: 154900 + - ID: 1459 + Name: Bat Yam + CountryCode: ISR + District: Tel Aviv + Population: 137000 + - ID: 1460 + Name: Bene Beraq + CountryCode: ISR + District: Tel Aviv + Population: 133900 + - ID: 1461 + Name: Ramat Gan + CountryCode: ISR + District: Tel Aviv + Population: 126900 + - ID: 1462 + Name: Ashqelon + CountryCode: ISR + District: Ha Darom + Population: 92300 + - ID: 1463 + Name: Rehovot + CountryCode: ISR + District: Ha Merkaz + Population: 90300 + - ID: 1464 + Name: Roma + CountryCode: ITA + District: Latium + Population: 2643581 + - ID: 1465 + Name: Milano + CountryCode: ITA + District: Lombardia + Population: 1300977 + - ID: 1466 + Name: Napoli + CountryCode: ITA + District: Campania + Population: 1002619 + - ID: 1467 + Name: Torino + CountryCode: ITA + District: Piemonte + Population: 903705 + - ID: 1468 + Name: Palermo + CountryCode: ITA + District: Sisilia + Population: 683794 + - ID: 1469 + Name: Genova + CountryCode: ITA + District: Liguria + Population: 636104 + - ID: 1470 + Name: Bologna + CountryCode: ITA + District: Emilia-Romagna + Population: 381161 + - ID: 1471 + Name: Firenze + CountryCode: ITA + District: Toscana + Population: 376662 + - ID: 1472 + Name: Catania + CountryCode: ITA + District: Sisilia + Population: 337862 + - ID: 1473 + Name: Bari + CountryCode: ITA + District: Apulia + Population: 331848 + - ID: 1474 + Name: Venezia + CountryCode: ITA + District: Veneto + Population: 277305 + - ID: 1475 + Name: Messina + CountryCode: ITA + District: Sisilia + Population: 259156 + - ID: 1476 + Name: Verona + CountryCode: ITA + District: Veneto + Population: 255268 + - ID: 1477 + Name: Trieste + CountryCode: ITA + District: Friuli-Venezia Giuli + Population: 216459 + - ID: 1478 + Name: Padova + CountryCode: ITA + District: Veneto + Population: 211391 + - ID: 1479 + Name: Taranto + CountryCode: ITA + District: Apulia + Population: 208214 + - ID: 1480 + Name: Brescia + CountryCode: ITA + District: Lombardia + Population: 191317 + - ID: 1481 + Name: Reggio di Calabria + CountryCode: ITA + District: Calabria + Population: 179617 + - ID: 1482 + Name: Modena + CountryCode: ITA + District: Emilia-Romagna + Population: 176022 + - ID: 1483 + Name: Prato + CountryCode: ITA + District: Toscana + Population: 172473 + - ID: 1484 + Name: Parma + CountryCode: ITA + District: Emilia-Romagna + Population: 168717 + - ID: 1485 + Name: Cagliari + CountryCode: ITA + District: Sardinia + Population: 165926 + - ID: 1486 + Name: Livorno + CountryCode: ITA + District: Toscana + Population: 161673 + - ID: 1487 + Name: Perugia + CountryCode: ITA + District: Umbria + Population: 156673 + - ID: 1488 + Name: Foggia + CountryCode: ITA + District: Apulia + Population: 154891 + - ID: 1489 + Name: Reggio nell´ Emilia + CountryCode: ITA + District: Emilia-Romagna + Population: 143664 + - ID: 1490 + Name: Salerno + CountryCode: ITA + District: Campania + Population: 142055 + - ID: 1491 + Name: Ravenna + CountryCode: ITA + District: Emilia-Romagna + Population: 138418 + - ID: 1492 + Name: Ferrara + CountryCode: ITA + District: Emilia-Romagna + Population: 132127 + - ID: 1493 + Name: Rimini + CountryCode: ITA + District: Emilia-Romagna + Population: 131062 + - ID: 1494 + Name: Syrakusa + CountryCode: ITA + District: Sisilia + Population: 126282 + - ID: 1495 + Name: Sassari + CountryCode: ITA + District: Sardinia + Population: 120803 + - ID: 1496 + Name: Monza + CountryCode: ITA + District: Lombardia + Population: 119516 + - ID: 1497 + Name: Bergamo + CountryCode: ITA + District: Lombardia + Population: 117837 + - ID: 1498 + Name: Pescara + CountryCode: ITA + District: Abruzzit + Population: 115698 + - ID: 1499 + Name: Latina + CountryCode: ITA + District: Latium + Population: 114099 + - ID: 1500 + Name: Vicenza + CountryCode: ITA + District: Veneto + Population: 109738 + - ID: 1501 + Name: Terni + CountryCode: ITA + District: Umbria + Population: 107770 + - ID: 1502 + Name: Forlì + CountryCode: ITA + District: Emilia-Romagna + Population: 107475 + - ID: 1503 + Name: Trento + CountryCode: ITA + District: Trentino-Alto Adige + Population: 104906 + - ID: 1504 + Name: Novara + CountryCode: ITA + District: Piemonte + Population: 102037 + - ID: 1505 + Name: Piacenza + CountryCode: ITA + District: Emilia-Romagna + Population: 98384 + - ID: 1506 + Name: Ancona + CountryCode: ITA + District: Marche + Population: 98329 + - ID: 1507 + Name: Lecce + CountryCode: ITA + District: Apulia + Population: 98208 + - ID: 1508 + Name: Bolzano + CountryCode: ITA + District: Trentino-Alto Adige + Population: 97232 + - ID: 1509 + Name: Catanzaro + CountryCode: ITA + District: Calabria + Population: 96700 + - ID: 1510 + Name: La Spezia + CountryCode: ITA + District: Liguria + Population: 95504 + - ID: 1511 + Name: Udine + CountryCode: ITA + District: Friuli-Venezia Giuli + Population: 94932 + - ID: 1512 + Name: Torre del Greco + CountryCode: ITA + District: Campania + Population: 94505 + - ID: 1513 + Name: Andria + CountryCode: ITA + District: Apulia + Population: 94443 + - ID: 1514 + Name: Brindisi + CountryCode: ITA + District: Apulia + Population: 93454 + - ID: 1515 + Name: Giugliano in Campania + CountryCode: ITA + District: Campania + Population: 93286 + - ID: 1516 + Name: Pisa + CountryCode: ITA + District: Toscana + Population: 92379 + - ID: 1517 + Name: Barletta + CountryCode: ITA + District: Apulia + Population: 91904 + - ID: 1518 + Name: Arezzo + CountryCode: ITA + District: Toscana + Population: 91729 + - ID: 1519 + Name: Alessandria + CountryCode: ITA + District: Piemonte + Population: 90289 + - ID: 1520 + Name: Cesena + CountryCode: ITA + District: Emilia-Romagna + Population: 89852 + - ID: 1521 + Name: Pesaro + CountryCode: ITA + District: Marche + Population: 88987 + - ID: 1522 + Name: Dili + CountryCode: TMP + District: Dili + Population: 47900 + - ID: 1523 + Name: Wien + CountryCode: AUT + District: Wien + Population: 1608144 + - ID: 1524 + Name: Graz + CountryCode: AUT + District: Steiermark + Population: 240967 + - ID: 1525 + Name: Linz + CountryCode: AUT + District: North Austria + Population: 188022 + - ID: 1526 + Name: Salzburg + CountryCode: AUT + District: Salzburg + Population: 144247 + - ID: 1527 + Name: Innsbruck + CountryCode: AUT + District: Tiroli + Population: 111752 + - ID: 1528 + Name: Klagenfurt + CountryCode: AUT + District: Kärnten + Population: 91141 + - ID: 1529 + Name: Spanish Town + CountryCode: JAM + District: St. Catherine + Population: 110379 + - ID: 1530 + Name: Kingston + CountryCode: JAM + District: St. Andrew + Population: 103962 + - ID: 1531 + Name: Portmore + CountryCode: JAM + District: St. Andrew + Population: 99799 + - ID: 1532 + Name: Tokyo + CountryCode: JPN + District: Tokyo-to + Population: 7980230 + - ID: 1533 + Name: Jokohama [Yokohama] + CountryCode: JPN + District: Kanagawa + Population: 3339594 + - ID: 1534 + Name: Osaka + CountryCode: JPN + District: Osaka + Population: 2595674 + - ID: 1535 + Name: Nagoya + CountryCode: JPN + District: Aichi + Population: 2154376 + - ID: 1536 + Name: Sapporo + CountryCode: JPN + District: Hokkaido + Population: 1790886 + - ID: 1537 + Name: Kioto + CountryCode: JPN + District: Kyoto + Population: 1461974 + - ID: 1538 + Name: Kobe + CountryCode: JPN + District: Hyogo + Population: 1425139 + - ID: 1539 + Name: Fukuoka + CountryCode: JPN + District: Fukuoka + Population: 1308379 + - ID: 1540 + Name: Kawasaki + CountryCode: JPN + District: Kanagawa + Population: 1217359 + - ID: 1541 + Name: Hiroshima + CountryCode: JPN + District: Hiroshima + Population: 1119117 + - ID: 1542 + Name: Kitakyushu + CountryCode: JPN + District: Fukuoka + Population: 1016264 + - ID: 1543 + Name: Sendai + CountryCode: JPN + District: Miyagi + Population: 989975 + - ID: 1544 + Name: Chiba + CountryCode: JPN + District: Chiba + Population: 863930 + - ID: 1545 + Name: Sakai + CountryCode: JPN + District: Osaka + Population: 797735 + - ID: 1546 + Name: Kumamoto + CountryCode: JPN + District: Kumamoto + Population: 656734 + - ID: 1547 + Name: Okayama + CountryCode: JPN + District: Okayama + Population: 624269 + - ID: 1548 + Name: Sagamihara + CountryCode: JPN + District: Kanagawa + Population: 586300 + - ID: 1549 + Name: Hamamatsu + CountryCode: JPN + District: Shizuoka + Population: 568796 + - ID: 1550 + Name: Kagoshima + CountryCode: JPN + District: Kagoshima + Population: 549977 + - ID: 1551 + Name: Funabashi + CountryCode: JPN + District: Chiba + Population: 545299 + - ID: 1552 + Name: Higashiosaka + CountryCode: JPN + District: Osaka + Population: 517785 + - ID: 1553 + Name: Hachioji + CountryCode: JPN + District: Tokyo-to + Population: 513451 + - ID: 1554 + Name: Niigata + CountryCode: JPN + District: Niigata + Population: 497464 + - ID: 1555 + Name: Amagasaki + CountryCode: JPN + District: Hyogo + Population: 481434 + - ID: 1556 + Name: Himeji + CountryCode: JPN + District: Hyogo + Population: 475167 + - ID: 1557 + Name: Shizuoka + CountryCode: JPN + District: Shizuoka + Population: 473854 + - ID: 1558 + Name: Urawa + CountryCode: JPN + District: Saitama + Population: 469675 + - ID: 1559 + Name: Matsuyama + CountryCode: JPN + District: Ehime + Population: 466133 + - ID: 1560 + Name: Matsudo + CountryCode: JPN + District: Chiba + Population: 461126 + - ID: 1561 + Name: Kanazawa + CountryCode: JPN + District: Ishikawa + Population: 455386 + - ID: 1562 + Name: Kawaguchi + CountryCode: JPN + District: Saitama + Population: 452155 + - ID: 1563 + Name: Ichikawa + CountryCode: JPN + District: Chiba + Population: 441893 + - ID: 1564 + Name: Omiya + CountryCode: JPN + District: Saitama + Population: 441649 + - ID: 1565 + Name: Utsunomiya + CountryCode: JPN + District: Tochigi + Population: 440353 + - ID: 1566 + Name: Oita + CountryCode: JPN + District: Oita + Population: 433401 + - ID: 1567 + Name: Nagasaki + CountryCode: JPN + District: Nagasaki + Population: 432759 + - ID: 1568 + Name: Yokosuka + CountryCode: JPN + District: Kanagawa + Population: 430200 + - ID: 1569 + Name: Kurashiki + CountryCode: JPN + District: Okayama + Population: 425103 + - ID: 1570 + Name: Gifu + CountryCode: JPN + District: Gifu + Population: 408007 + - ID: 1571 + Name: Hirakata + CountryCode: JPN + District: Osaka + Population: 403151 + - ID: 1572 + Name: Nishinomiya + CountryCode: JPN + District: Hyogo + Population: 397618 + - ID: 1573 + Name: Toyonaka + CountryCode: JPN + District: Osaka + Population: 396689 + - ID: 1574 + Name: Wakayama + CountryCode: JPN + District: Wakayama + Population: 391233 + - ID: 1575 + Name: Fukuyama + CountryCode: JPN + District: Hiroshima + Population: 376921 + - ID: 1576 + Name: Fujisawa + CountryCode: JPN + District: Kanagawa + Population: 372840 + - ID: 1577 + Name: Asahikawa + CountryCode: JPN + District: Hokkaido + Population: 364813 + - ID: 1578 + Name: Machida + CountryCode: JPN + District: Tokyo-to + Population: 364197 + - ID: 1579 + Name: Nara + CountryCode: JPN + District: Nara + Population: 362812 + - ID: 1580 + Name: Takatsuki + CountryCode: JPN + District: Osaka + Population: 361747 + - ID: 1581 + Name: Iwaki + CountryCode: JPN + District: Fukushima + Population: 361737 + - ID: 1582 + Name: Nagano + CountryCode: JPN + District: Nagano + Population: 361391 + - ID: 1583 + Name: Toyohashi + CountryCode: JPN + District: Aichi + Population: 360066 + - ID: 1584 + Name: Toyota + CountryCode: JPN + District: Aichi + Population: 346090 + - ID: 1585 + Name: Suita + CountryCode: JPN + District: Osaka + Population: 345750 + - ID: 1586 + Name: Takamatsu + CountryCode: JPN + District: Kagawa + Population: 332471 + - ID: 1587 + Name: Koriyama + CountryCode: JPN + District: Fukushima + Population: 330335 + - ID: 1588 + Name: Okazaki + CountryCode: JPN + District: Aichi + Population: 328711 + - ID: 1589 + Name: Kawagoe + CountryCode: JPN + District: Saitama + Population: 327211 + - ID: 1590 + Name: Tokorozawa + CountryCode: JPN + District: Saitama + Population: 325809 + - ID: 1591 + Name: Toyama + CountryCode: JPN + District: Toyama + Population: 325790 + - ID: 1592 + Name: Kochi + CountryCode: JPN + District: Kochi + Population: 324710 + - ID: 1593 + Name: Kashiwa + CountryCode: JPN + District: Chiba + Population: 320296 + - ID: 1594 + Name: Akita + CountryCode: JPN + District: Akita + Population: 314440 + - ID: 1595 + Name: Miyazaki + CountryCode: JPN + District: Miyazaki + Population: 303784 + - ID: 1596 + Name: Koshigaya + CountryCode: JPN + District: Saitama + Population: 301446 + - ID: 1597 + Name: Naha + CountryCode: JPN + District: Okinawa + Population: 299851 + - ID: 1598 + Name: Aomori + CountryCode: JPN + District: Aomori + Population: 295969 + - ID: 1599 + Name: Hakodate + CountryCode: JPN + District: Hokkaido + Population: 294788 + - ID: 1600 + Name: Akashi + CountryCode: JPN + District: Hyogo + Population: 292253 + - ID: 1601 + Name: Yokkaichi + CountryCode: JPN + District: Mie + Population: 288173 + - ID: 1602 + Name: Fukushima + CountryCode: JPN + District: Fukushima + Population: 287525 + - ID: 1603 + Name: Morioka + CountryCode: JPN + District: Iwate + Population: 287353 + - ID: 1604 + Name: Maebashi + CountryCode: JPN + District: Gumma + Population: 284473 + - ID: 1605 + Name: Kasugai + CountryCode: JPN + District: Aichi + Population: 282348 + - ID: 1606 + Name: Otsu + CountryCode: JPN + District: Shiga + Population: 282070 + - ID: 1607 + Name: Ichihara + CountryCode: JPN + District: Chiba + Population: 279280 + - ID: 1608 + Name: Yao + CountryCode: JPN + District: Osaka + Population: 276421 + - ID: 1609 + Name: Ichinomiya + CountryCode: JPN + District: Aichi + Population: 270828 + - ID: 1610 + Name: Tokushima + CountryCode: JPN + District: Tokushima + Population: 269649 + - ID: 1611 + Name: Kakogawa + CountryCode: JPN + District: Hyogo + Population: 266281 + - ID: 1612 + Name: Ibaraki + CountryCode: JPN + District: Osaka + Population: 261020 + - ID: 1613 + Name: Neyagawa + CountryCode: JPN + District: Osaka + Population: 257315 + - ID: 1614 + Name: Shimonoseki + CountryCode: JPN + District: Yamaguchi + Population: 257263 + - ID: 1615 + Name: Yamagata + CountryCode: JPN + District: Yamagata + Population: 255617 + - ID: 1616 + Name: Fukui + CountryCode: JPN + District: Fukui + Population: 254818 + - ID: 1617 + Name: Hiratsuka + CountryCode: JPN + District: Kanagawa + Population: 254207 + - ID: 1618 + Name: Mito + CountryCode: JPN + District: Ibaragi + Population: 246559 + - ID: 1619 + Name: Sasebo + CountryCode: JPN + District: Nagasaki + Population: 244240 + - ID: 1620 + Name: Hachinohe + CountryCode: JPN + District: Aomori + Population: 242979 + - ID: 1621 + Name: Takasaki + CountryCode: JPN + District: Gumma + Population: 239124 + - ID: 1622 + Name: Shimizu + CountryCode: JPN + District: Shizuoka + Population: 239123 + - ID: 1623 + Name: Kurume + CountryCode: JPN + District: Fukuoka + Population: 235611 + - ID: 1624 + Name: Fuji + CountryCode: JPN + District: Shizuoka + Population: 231527 + - ID: 1625 + Name: Soka + CountryCode: JPN + District: Saitama + Population: 222768 + - ID: 1626 + Name: Fuchu + CountryCode: JPN + District: Tokyo-to + Population: 220576 + - ID: 1627 + Name: Chigasaki + CountryCode: JPN + District: Kanagawa + Population: 216015 + - ID: 1628 + Name: Atsugi + CountryCode: JPN + District: Kanagawa + Population: 212407 + - ID: 1629 + Name: Numazu + CountryCode: JPN + District: Shizuoka + Population: 211382 + - ID: 1630 + Name: Ageo + CountryCode: JPN + District: Saitama + Population: 209442 + - ID: 1631 + Name: Yamato + CountryCode: JPN + District: Kanagawa + Population: 208234 + - ID: 1632 + Name: Matsumoto + CountryCode: JPN + District: Nagano + Population: 206801 + - ID: 1633 + Name: Kure + CountryCode: JPN + District: Hiroshima + Population: 206504 + - ID: 1634 + Name: Takarazuka + CountryCode: JPN + District: Hyogo + Population: 205993 + - ID: 1635 + Name: Kasukabe + CountryCode: JPN + District: Saitama + Population: 201838 + - ID: 1636 + Name: Chofu + CountryCode: JPN + District: Tokyo-to + Population: 201585 + - ID: 1637 + Name: Odawara + CountryCode: JPN + District: Kanagawa + Population: 200171 + - ID: 1638 + Name: Kofu + CountryCode: JPN + District: Yamanashi + Population: 199753 + - ID: 1639 + Name: Kushiro + CountryCode: JPN + District: Hokkaido + Population: 197608 + - ID: 1640 + Name: Kishiwada + CountryCode: JPN + District: Osaka + Population: 197276 + - ID: 1641 + Name: Hitachi + CountryCode: JPN + District: Ibaragi + Population: 196622 + - ID: 1642 + Name: Nagaoka + CountryCode: JPN + District: Niigata + Population: 192407 + - ID: 1643 + Name: Itami + CountryCode: JPN + District: Hyogo + Population: 190886 + - ID: 1644 + Name: Uji + CountryCode: JPN + District: Kyoto + Population: 188735 + - ID: 1645 + Name: Suzuka + CountryCode: JPN + District: Mie + Population: 184061 + - ID: 1646 + Name: Hirosaki + CountryCode: JPN + District: Aomori + Population: 177522 + - ID: 1647 + Name: Ube + CountryCode: JPN + District: Yamaguchi + Population: 175206 + - ID: 1648 + Name: Kodaira + CountryCode: JPN + District: Tokyo-to + Population: 174984 + - ID: 1649 + Name: Takaoka + CountryCode: JPN + District: Toyama + Population: 174380 + - ID: 1650 + Name: Obihiro + CountryCode: JPN + District: Hokkaido + Population: 173685 + - ID: 1651 + Name: Tomakomai + CountryCode: JPN + District: Hokkaido + Population: 171958 + - ID: 1652 + Name: Saga + CountryCode: JPN + District: Saga + Population: 170034 + - ID: 1653 + Name: Sakura + CountryCode: JPN + District: Chiba + Population: 168072 + - ID: 1654 + Name: Kamakura + CountryCode: JPN + District: Kanagawa + Population: 167661 + - ID: 1655 + Name: Mitaka + CountryCode: JPN + District: Tokyo-to + Population: 167268 + - ID: 1656 + Name: Izumi + CountryCode: JPN + District: Osaka + Population: 166979 + - ID: 1657 + Name: Hino + CountryCode: JPN + District: Tokyo-to + Population: 166770 + - ID: 1658 + Name: Hadano + CountryCode: JPN + District: Kanagawa + Population: 166512 + - ID: 1659 + Name: Ashikaga + CountryCode: JPN + District: Tochigi + Population: 165243 + - ID: 1660 + Name: Tsu + CountryCode: JPN + District: Mie + Population: 164543 + - ID: 1661 + Name: Sayama + CountryCode: JPN + District: Saitama + Population: 162472 + - ID: 1662 + Name: Yachiyo + CountryCode: JPN + District: Chiba + Population: 161222 + - ID: 1663 + Name: Tsukuba + CountryCode: JPN + District: Ibaragi + Population: 160768 + - ID: 1664 + Name: Tachikawa + CountryCode: JPN + District: Tokyo-to + Population: 159430 + - ID: 1665 + Name: Kumagaya + CountryCode: JPN + District: Saitama + Population: 157171 + - ID: 1666 + Name: Moriguchi + CountryCode: JPN + District: Osaka + Population: 155941 + - ID: 1667 + Name: Otaru + CountryCode: JPN + District: Hokkaido + Population: 155784 + - ID: 1668 + Name: Anjo + CountryCode: JPN + District: Aichi + Population: 153823 + - ID: 1669 + Name: Narashino + CountryCode: JPN + District: Chiba + Population: 152849 + - ID: 1670 + Name: Oyama + CountryCode: JPN + District: Tochigi + Population: 152820 + - ID: 1671 + Name: Ogaki + CountryCode: JPN + District: Gifu + Population: 151758 + - ID: 1672 + Name: Matsue + CountryCode: JPN + District: Shimane + Population: 149821 + - ID: 1673 + Name: Kawanishi + CountryCode: JPN + District: Hyogo + Population: 149794 + - ID: 1674 + Name: Hitachinaka + CountryCode: JPN + District: Tokyo-to + Population: 148006 + - ID: 1675 + Name: Niiza + CountryCode: JPN + District: Saitama + Population: 147744 + - ID: 1676 + Name: Nagareyama + CountryCode: JPN + District: Chiba + Population: 147738 + - ID: 1677 + Name: Tottori + CountryCode: JPN + District: Tottori + Population: 147523 + - ID: 1678 + Name: Tama + CountryCode: JPN + District: Ibaragi + Population: 146712 + - ID: 1679 + Name: Iruma + CountryCode: JPN + District: Saitama + Population: 145922 + - ID: 1680 + Name: Ota + CountryCode: JPN + District: Gumma + Population: 145317 + - ID: 1681 + Name: Omuta + CountryCode: JPN + District: Fukuoka + Population: 142889 + - ID: 1682 + Name: Komaki + CountryCode: JPN + District: Aichi + Population: 139827 + - ID: 1683 + Name: Ome + CountryCode: JPN + District: Tokyo-to + Population: 139216 + - ID: 1684 + Name: Kadoma + CountryCode: JPN + District: Osaka + Population: 138953 + - ID: 1685 + Name: Yamaguchi + CountryCode: JPN + District: Yamaguchi + Population: 138210 + - ID: 1686 + Name: Higashimurayama + CountryCode: JPN + District: Tokyo-to + Population: 136970 + - ID: 1687 + Name: Yonago + CountryCode: JPN + District: Tottori + Population: 136461 + - ID: 1688 + Name: Matsubara + CountryCode: JPN + District: Osaka + Population: 135010 + - ID: 1689 + Name: Musashino + CountryCode: JPN + District: Tokyo-to + Population: 134426 + - ID: 1690 + Name: Tsuchiura + CountryCode: JPN + District: Ibaragi + Population: 134072 + - ID: 1691 + Name: Joetsu + CountryCode: JPN + District: Niigata + Population: 133505 + - ID: 1692 + Name: Miyakonojo + CountryCode: JPN + District: Miyazaki + Population: 133183 + - ID: 1693 + Name: Misato + CountryCode: JPN + District: Saitama + Population: 132957 + - ID: 1694 + Name: Kakamigahara + CountryCode: JPN + District: Gifu + Population: 131831 + - ID: 1695 + Name: Daito + CountryCode: JPN + District: Osaka + Population: 130594 + - ID: 1696 + Name: Seto + CountryCode: JPN + District: Aichi + Population: 130470 + - ID: 1697 + Name: Kariya + CountryCode: JPN + District: Aichi + Population: 127969 + - ID: 1698 + Name: Urayasu + CountryCode: JPN + District: Chiba + Population: 127550 + - ID: 1699 + Name: Beppu + CountryCode: JPN + District: Oita + Population: 127486 + - ID: 1700 + Name: Niihama + CountryCode: JPN + District: Ehime + Population: 127207 + - ID: 1701 + Name: Minoo + CountryCode: JPN + District: Osaka + Population: 127026 + - ID: 1702 + Name: Fujieda + CountryCode: JPN + District: Shizuoka + Population: 126897 + - ID: 1703 + Name: Abiko + CountryCode: JPN + District: Chiba + Population: 126670 + - ID: 1704 + Name: Nobeoka + CountryCode: JPN + District: Miyazaki + Population: 125547 + - ID: 1705 + Name: Tondabayashi + CountryCode: JPN + District: Osaka + Population: 125094 + - ID: 1706 + Name: Ueda + CountryCode: JPN + District: Nagano + Population: 124217 + - ID: 1707 + Name: Kashihara + CountryCode: JPN + District: Nara + Population: 124013 + - ID: 1708 + Name: Matsusaka + CountryCode: JPN + District: Mie + Population: 123582 + - ID: 1709 + Name: Isesaki + CountryCode: JPN + District: Gumma + Population: 123285 + - ID: 1710 + Name: Zama + CountryCode: JPN + District: Kanagawa + Population: 122046 + - ID: 1711 + Name: Kisarazu + CountryCode: JPN + District: Chiba + Population: 121967 + - ID: 1712 + Name: Noda + CountryCode: JPN + District: Chiba + Population: 121030 + - ID: 1713 + Name: Ishinomaki + CountryCode: JPN + District: Miyagi + Population: 120963 + - ID: 1714 + Name: Fujinomiya + CountryCode: JPN + District: Shizuoka + Population: 119714 + - ID: 1715 + Name: Kawachinagano + CountryCode: JPN + District: Osaka + Population: 119666 + - ID: 1716 + Name: Imabari + CountryCode: JPN + District: Ehime + Population: 119357 + - ID: 1717 + Name: Aizuwakamatsu + CountryCode: JPN + District: Fukushima + Population: 119287 + - ID: 1718 + Name: Higashihiroshima + CountryCode: JPN + District: Hiroshima + Population: 119166 + - ID: 1719 + Name: Habikino + CountryCode: JPN + District: Osaka + Population: 118968 + - ID: 1720 + Name: Ebetsu + CountryCode: JPN + District: Hokkaido + Population: 118805 + - ID: 1721 + Name: Hofu + CountryCode: JPN + District: Yamaguchi + Population: 118751 + - ID: 1722 + Name: Kiryu + CountryCode: JPN + District: Gumma + Population: 118326 + - ID: 1723 + Name: Okinawa + CountryCode: JPN + District: Okinawa + Population: 117748 + - ID: 1724 + Name: Yaizu + CountryCode: JPN + District: Shizuoka + Population: 117258 + - ID: 1725 + Name: Toyokawa + CountryCode: JPN + District: Aichi + Population: 115781 + - ID: 1726 + Name: Ebina + CountryCode: JPN + District: Kanagawa + Population: 115571 + - ID: 1727 + Name: Asaka + CountryCode: JPN + District: Saitama + Population: 114815 + - ID: 1728 + Name: Higashikurume + CountryCode: JPN + District: Tokyo-to + Population: 111666 + - ID: 1729 + Name: Ikoma + CountryCode: JPN + District: Nara + Population: 111645 + - ID: 1730 + Name: Kitami + CountryCode: JPN + District: Hokkaido + Population: 111295 + - ID: 1731 + Name: Koganei + CountryCode: JPN + District: Tokyo-to + Population: 110969 + - ID: 1732 + Name: Iwatsuki + CountryCode: JPN + District: Saitama + Population: 110034 + - ID: 1733 + Name: Mishima + CountryCode: JPN + District: Shizuoka + Population: 109699 + - ID: 1734 + Name: Handa + CountryCode: JPN + District: Aichi + Population: 108600 + - ID: 1735 + Name: Muroran + CountryCode: JPN + District: Hokkaido + Population: 108275 + - ID: 1736 + Name: Komatsu + CountryCode: JPN + District: Ishikawa + Population: 107937 + - ID: 1737 + Name: Yatsushiro + CountryCode: JPN + District: Kumamoto + Population: 107661 + - ID: 1738 + Name: Iida + CountryCode: JPN + District: Nagano + Population: 107583 + - ID: 1739 + Name: Tokuyama + CountryCode: JPN + District: Yamaguchi + Population: 107078 + - ID: 1740 + Name: Kokubunji + CountryCode: JPN + District: Tokyo-to + Population: 106996 + - ID: 1741 + Name: Akishima + CountryCode: JPN + District: Tokyo-to + Population: 106914 + - ID: 1742 + Name: Iwakuni + CountryCode: JPN + District: Yamaguchi + Population: 106647 + - ID: 1743 + Name: Kusatsu + CountryCode: JPN + District: Shiga + Population: 106232 + - ID: 1744 + Name: Kuwana + CountryCode: JPN + District: Mie + Population: 106121 + - ID: 1745 + Name: Sanda + CountryCode: JPN + District: Hyogo + Population: 105643 + - ID: 1746 + Name: Hikone + CountryCode: JPN + District: Shiga + Population: 105508 + - ID: 1747 + Name: Toda + CountryCode: JPN + District: Saitama + Population: 103969 + - ID: 1748 + Name: Tajimi + CountryCode: JPN + District: Gifu + Population: 103171 + - ID: 1749 + Name: Ikeda + CountryCode: JPN + District: Osaka + Population: 102710 + - ID: 1750 + Name: Fukaya + CountryCode: JPN + District: Saitama + Population: 102156 + - ID: 1751 + Name: Ise + CountryCode: JPN + District: Mie + Population: 101732 + - ID: 1752 + Name: Sakata + CountryCode: JPN + District: Yamagata + Population: 101651 + - ID: 1753 + Name: Kasuga + CountryCode: JPN + District: Fukuoka + Population: 101344 + - ID: 1754 + Name: Kamagaya + CountryCode: JPN + District: Chiba + Population: 100821 + - ID: 1755 + Name: Tsuruoka + CountryCode: JPN + District: Yamagata + Population: 100713 + - ID: 1756 + Name: Hoya + CountryCode: JPN + District: Tokyo-to + Population: 100313 + - ID: 1757 + Name: Nishio + CountryCode: JPN + District: Chiba + Population: 100032 + - ID: 1758 + Name: Tokai + CountryCode: JPN + District: Aichi + Population: 99738 + - ID: 1759 + Name: Inazawa + CountryCode: JPN + District: Aichi + Population: 98746 + - ID: 1760 + Name: Sakado + CountryCode: JPN + District: Saitama + Population: 98221 + - ID: 1761 + Name: Isehara + CountryCode: JPN + District: Kanagawa + Population: 98123 + - ID: 1762 + Name: Takasago + CountryCode: JPN + District: Hyogo + Population: 97632 + - ID: 1763 + Name: Fujimi + CountryCode: JPN + District: Saitama + Population: 96972 + - ID: 1764 + Name: Urasoe + CountryCode: JPN + District: Okinawa + Population: 96002 + - ID: 1765 + Name: Yonezawa + CountryCode: JPN + District: Yamagata + Population: 95592 + - ID: 1766 + Name: Konan + CountryCode: JPN + District: Aichi + Population: 95521 + - ID: 1767 + Name: Yamatokoriyama + CountryCode: JPN + District: Nara + Population: 95165 + - ID: 1768 + Name: Maizuru + CountryCode: JPN + District: Kyoto + Population: 94784 + - ID: 1769 + Name: Onomichi + CountryCode: JPN + District: Hiroshima + Population: 93756 + - ID: 1770 + Name: Higashimatsuyama + CountryCode: JPN + District: Saitama + Population: 93342 + - ID: 1771 + Name: Kimitsu + CountryCode: JPN + District: Chiba + Population: 93216 + - ID: 1772 + Name: Isahaya + CountryCode: JPN + District: Nagasaki + Population: 93058 + - ID: 1773 + Name: Kanuma + CountryCode: JPN + District: Tochigi + Population: 93053 + - ID: 1774 + Name: Izumisano + CountryCode: JPN + District: Osaka + Population: 92583 + - ID: 1775 + Name: Kameoka + CountryCode: JPN + District: Kyoto + Population: 92398 + - ID: 1776 + Name: Mobara + CountryCode: JPN + District: Chiba + Population: 91664 + - ID: 1777 + Name: Narita + CountryCode: JPN + District: Chiba + Population: 91470 + - ID: 1778 + Name: Kashiwazaki + CountryCode: JPN + District: Niigata + Population: 91229 + - ID: 1779 + Name: Tsuyama + CountryCode: JPN + District: Okayama + Population: 91170 + - ID: 1780 + Name: Sanaa + CountryCode: YEM + District: Sanaa + Population: 503600 + - ID: 1781 + Name: Aden + CountryCode: YEM + District: Aden + Population: 398300 + - ID: 1782 + Name: Taizz + CountryCode: YEM + District: Taizz + Population: 317600 + - ID: 1783 + Name: Hodeida + CountryCode: YEM + District: Hodeida + Population: 298500 + - ID: 1784 + Name: al-Mukalla + CountryCode: YEM + District: Hadramawt + Population: 122400 + - ID: 1785 + Name: Ibb + CountryCode: YEM + District: Ibb + Population: 103300 + - ID: 1786 + Name: Amman + CountryCode: JOR + District: Amman + Population: 1000000 + - ID: 1787 + Name: al-Zarqa + CountryCode: JOR + District: al-Zarqa + Population: 389815 + - ID: 1788 + Name: Irbid + CountryCode: JOR + District: Irbid + Population: 231511 + - ID: 1789 + Name: al-Rusayfa + CountryCode: JOR + District: al-Zarqa + Population: 137247 + - ID: 1790 + Name: Wadi al-Sir + CountryCode: JOR + District: Amman + Population: 89104 + - ID: 1791 + Name: Flying Fish Cove + CountryCode: CXR + District: – + Population: 700 + - ID: 1792 + Name: Beograd + CountryCode: YUG + District: Central Serbia + Population: 1204000 + - ID: 1793 + Name: Novi Sad + CountryCode: YUG + District: Vojvodina + Population: 179626 + - ID: 1794 + Name: Niš + CountryCode: YUG + District: Central Serbia + Population: 175391 + - ID: 1795 + Name: Priština + CountryCode: YUG + District: Kosovo and Metohija + Population: 155496 + - ID: 1796 + Name: Kragujevac + CountryCode: YUG + District: Central Serbia + Population: 147305 + - ID: 1797 + Name: Podgorica + CountryCode: YUG + District: Montenegro + Population: 135000 + - ID: 1798 + Name: Subotica + CountryCode: YUG + District: Vojvodina + Population: 100386 + - ID: 1799 + Name: Prizren + CountryCode: YUG + District: Kosovo and Metohija + Population: 92303 + - ID: 1800 + Name: Phnom Penh + CountryCode: KHM + District: Phnom Penh + Population: 570155 + - ID: 1801 + Name: Battambang + CountryCode: KHM + District: Battambang + Population: 129800 + - ID: 1802 + Name: Siem Reap + CountryCode: KHM + District: Siem Reap + Population: 105100 + - ID: 1803 + Name: Douala + CountryCode: CMR + District: Littoral + Population: 1448300 + - ID: 1804 + Name: Yaoundé + CountryCode: CMR + District: Centre + Population: 1372800 + - ID: 1805 + Name: Garoua + CountryCode: CMR + District: Nord + Population: 177000 + - ID: 1806 + Name: Maroua + CountryCode: CMR + District: Extrême-Nord + Population: 143000 + - ID: 1807 + Name: Bamenda + CountryCode: CMR + District: Nord-Ouest + Population: 138000 + - ID: 1808 + Name: Bafoussam + CountryCode: CMR + District: Ouest + Population: 131000 + - ID: 1809 + Name: Nkongsamba + CountryCode: CMR + District: Littoral + Population: 112454 + - ID: 1810 + Name: Montréal + CountryCode: CAN + District: Québec + Population: 1016376 + - ID: 1811 + Name: Calgary + CountryCode: CAN + District: Alberta + Population: 768082 + - ID: 1812 + Name: Toronto + CountryCode: CAN + District: Ontario + Population: 688275 + - ID: 1813 + Name: North York + CountryCode: CAN + District: Ontario + Population: 622632 + - ID: 1814 + Name: Winnipeg + CountryCode: CAN + District: Manitoba + Population: 618477 + - ID: 1815 + Name: Edmonton + CountryCode: CAN + District: Alberta + Population: 616306 + - ID: 1816 + Name: Mississauga + CountryCode: CAN + District: Ontario + Population: 608072 + - ID: 1817 + Name: Scarborough + CountryCode: CAN + District: Ontario + Population: 594501 + - ID: 1818 + Name: Vancouver + CountryCode: CAN + District: British Colombia + Population: 514008 + - ID: 1819 + Name: Etobicoke + CountryCode: CAN + District: Ontario + Population: 348845 + - ID: 1820 + Name: London + CountryCode: CAN + District: Ontario + Population: 339917 + - ID: 1821 + Name: Hamilton + CountryCode: CAN + District: Ontario + Population: 335614 + - ID: 1822 + Name: Ottawa + CountryCode: CAN + District: Ontario + Population: 335277 + - ID: 1823 + Name: Laval + CountryCode: CAN + District: Québec + Population: 330393 + - ID: 1824 + Name: Surrey + CountryCode: CAN + District: British Colombia + Population: 304477 + - ID: 1825 + Name: Brampton + CountryCode: CAN + District: Ontario + Population: 296711 + - ID: 1826 + Name: Windsor + CountryCode: CAN + District: Ontario + Population: 207588 + - ID: 1827 + Name: Saskatoon + CountryCode: CAN + District: Saskatchewan + Population: 193647 + - ID: 1828 + Name: Kitchener + CountryCode: CAN + District: Ontario + Population: 189959 + - ID: 1829 + Name: Markham + CountryCode: CAN + District: Ontario + Population: 189098 + - ID: 1830 + Name: Regina + CountryCode: CAN + District: Saskatchewan + Population: 180400 + - ID: 1831 + Name: Burnaby + CountryCode: CAN + District: British Colombia + Population: 179209 + - ID: 1832 + Name: Québec + CountryCode: CAN + District: Québec + Population: 167264 + - ID: 1833 + Name: York + CountryCode: CAN + District: Ontario + Population: 154980 + - ID: 1834 + Name: Richmond + CountryCode: CAN + District: British Colombia + Population: 148867 + - ID: 1835 + Name: Vaughan + CountryCode: CAN + District: Ontario + Population: 147889 + - ID: 1836 + Name: Burlington + CountryCode: CAN + District: Ontario + Population: 145150 + - ID: 1837 + Name: Oshawa + CountryCode: CAN + District: Ontario + Population: 140173 + - ID: 1838 + Name: Oakville + CountryCode: CAN + District: Ontario + Population: 139192 + - ID: 1839 + Name: Saint Catharines + CountryCode: CAN + District: Ontario + Population: 136216 + - ID: 1840 + Name: Longueuil + CountryCode: CAN + District: Québec + Population: 127977 + - ID: 1841 + Name: Richmond Hill + CountryCode: CAN + District: Ontario + Population: 116428 + - ID: 1842 + Name: Thunder Bay + CountryCode: CAN + District: Ontario + Population: 115913 + - ID: 1843 + Name: Nepean + CountryCode: CAN + District: Ontario + Population: 115100 + - ID: 1844 + Name: Cape Breton + CountryCode: CAN + District: Nova Scotia + Population: 114733 + - ID: 1845 + Name: East York + CountryCode: CAN + District: Ontario + Population: 114034 + - ID: 1846 + Name: Halifax + CountryCode: CAN + District: Nova Scotia + Population: 113910 + - ID: 1847 + Name: Cambridge + CountryCode: CAN + District: Ontario + Population: 109186 + - ID: 1848 + Name: Gloucester + CountryCode: CAN + District: Ontario + Population: 107314 + - ID: 1849 + Name: Abbotsford + CountryCode: CAN + District: British Colombia + Population: 105403 + - ID: 1850 + Name: Guelph + CountryCode: CAN + District: Ontario + Population: 103593 + - ID: 1851 + Name: Saint John´s + CountryCode: CAN + District: Newfoundland + Population: 101936 + - ID: 1852 + Name: Coquitlam + CountryCode: CAN + District: British Colombia + Population: 101820 + - ID: 1853 + Name: Saanich + CountryCode: CAN + District: British Colombia + Population: 101388 + - ID: 1854 + Name: Gatineau + CountryCode: CAN + District: Québec + Population: 100702 + - ID: 1855 + Name: Delta + CountryCode: CAN + District: British Colombia + Population: 95411 + - ID: 1856 + Name: Sudbury + CountryCode: CAN + District: Ontario + Population: 92686 + - ID: 1857 + Name: Kelowna + CountryCode: CAN + District: British Colombia + Population: 89442 + - ID: 1858 + Name: Barrie + CountryCode: CAN + District: Ontario + Population: 89269 + - ID: 1859 + Name: Praia + CountryCode: CPV + District: São Tiago + Population: 94800 + - ID: 1860 + Name: Almaty + CountryCode: KAZ + District: Almaty Qalasy + Population: 1129400 + - ID: 1861 + Name: Qaraghandy + CountryCode: KAZ + District: Qaraghandy + Population: 436900 + - ID: 1862 + Name: Shymkent + CountryCode: KAZ + District: South Kazakstan + Population: 360100 + - ID: 1863 + Name: Taraz + CountryCode: KAZ + District: Taraz + Population: 330100 + - ID: 1864 + Name: Astana + CountryCode: KAZ + District: Astana + Population: 311200 + - ID: 1865 + Name: Öskemen + CountryCode: KAZ + District: East Kazakstan + Population: 311000 + - ID: 1866 + Name: Pavlodar + CountryCode: KAZ + District: Pavlodar + Population: 300500 + - ID: 1867 + Name: Semey + CountryCode: KAZ + District: East Kazakstan + Population: 269600 + - ID: 1868 + Name: Aqtöbe + CountryCode: KAZ + District: Aqtöbe + Population: 253100 + - ID: 1869 + Name: Qostanay + CountryCode: KAZ + District: Qostanay + Population: 221400 + - ID: 1870 + Name: Petropavl + CountryCode: KAZ + District: North Kazakstan + Population: 203500 + - ID: 1871 + Name: Oral + CountryCode: KAZ + District: West Kazakstan + Population: 195500 + - ID: 1872 + Name: Temirtau + CountryCode: KAZ + District: Qaraghandy + Population: 170500 + - ID: 1873 + Name: Qyzylorda + CountryCode: KAZ + District: Qyzylorda + Population: 157400 + - ID: 1874 + Name: Aqtau + CountryCode: KAZ + District: Mangghystau + Population: 143400 + - ID: 1875 + Name: Atyrau + CountryCode: KAZ + District: Atyrau + Population: 142500 + - ID: 1876 + Name: Ekibastuz + CountryCode: KAZ + District: Pavlodar + Population: 127200 + - ID: 1877 + Name: Kökshetau + CountryCode: KAZ + District: North Kazakstan + Population: 123400 + - ID: 1878 + Name: Rudnyy + CountryCode: KAZ + District: Qostanay + Population: 109500 + - ID: 1879 + Name: Taldyqorghan + CountryCode: KAZ + District: Almaty + Population: 98000 + - ID: 1880 + Name: Zhezqazghan + CountryCode: KAZ + District: Qaraghandy + Population: 90000 + - ID: 1881 + Name: Nairobi + CountryCode: KEN + District: Nairobi + Population: 2290000 + - ID: 1882 + Name: Mombasa + CountryCode: KEN + District: Coast + Population: 461753 + - ID: 1883 + Name: Kisumu + CountryCode: KEN + District: Nyanza + Population: 192733 + - ID: 1884 + Name: Nakuru + CountryCode: KEN + District: Rift Valley + Population: 163927 + - ID: 1885 + Name: Machakos + CountryCode: KEN + District: Eastern + Population: 116293 + - ID: 1886 + Name: Eldoret + CountryCode: KEN + District: Rift Valley + Population: 111882 + - ID: 1887 + Name: Meru + CountryCode: KEN + District: Eastern + Population: 94947 + - ID: 1888 + Name: Nyeri + CountryCode: KEN + District: Central + Population: 91258 + - ID: 1889 + Name: Bangui + CountryCode: CAF + District: Bangui + Population: 524000 + - ID: 1890 + Name: Shanghai + CountryCode: CHN + District: Shanghai + Population: 9696300 + - ID: 1891 + Name: Peking + CountryCode: CHN + District: Peking + Population: 7472000 + - ID: 1892 + Name: Chongqing + CountryCode: CHN + District: Chongqing + Population: 6351600 + - ID: 1893 + Name: Tianjin + CountryCode: CHN + District: Tianjin + Population: 5286800 + - ID: 1894 + Name: Wuhan + CountryCode: CHN + District: Hubei + Population: 4344600 + - ID: 1895 + Name: Harbin + CountryCode: CHN + District: Heilongjiang + Population: 4289800 + - ID: 1896 + Name: Shenyang + CountryCode: CHN + District: Liaoning + Population: 4265200 + - ID: 1897 + Name: Kanton [Guangzhou] + CountryCode: CHN + District: Guangdong + Population: 4256300 + - ID: 1898 + Name: Chengdu + CountryCode: CHN + District: Sichuan + Population: 3361500 + - ID: 1899 + Name: Nanking [Nanjing] + CountryCode: CHN + District: Jiangsu + Population: 2870300 + - ID: 1900 + Name: Changchun + CountryCode: CHN + District: Jilin + Population: 2812000 + - ID: 1901 + Name: Xi´an + CountryCode: CHN + District: Shaanxi + Population: 2761400 + - ID: 1902 + Name: Dalian + CountryCode: CHN + District: Liaoning + Population: 2697000 + - ID: 1903 + Name: Qingdao + CountryCode: CHN + District: Shandong + Population: 2596000 + - ID: 1904 + Name: Jinan + CountryCode: CHN + District: Shandong + Population: 2278100 + - ID: 1905 + Name: Hangzhou + CountryCode: CHN + District: Zhejiang + Population: 2190500 + - ID: 1906 + Name: Zhengzhou + CountryCode: CHN + District: Henan + Population: 2107200 + - ID: 1907 + Name: Shijiazhuang + CountryCode: CHN + District: Hebei + Population: 2041500 + - ID: 1908 + Name: Taiyuan + CountryCode: CHN + District: Shanxi + Population: 1968400 + - ID: 1909 + Name: Kunming + CountryCode: CHN + District: Yunnan + Population: 1829500 + - ID: 1910 + Name: Changsha + CountryCode: CHN + District: Hunan + Population: 1809800 + - ID: 1911 + Name: Nanchang + CountryCode: CHN + District: Jiangxi + Population: 1691600 + - ID: 1912 + Name: Fuzhou + CountryCode: CHN + District: Fujian + Population: 1593800 + - ID: 1913 + Name: Lanzhou + CountryCode: CHN + District: Gansu + Population: 1565800 + - ID: 1914 + Name: Guiyang + CountryCode: CHN + District: Guizhou + Population: 1465200 + - ID: 1915 + Name: Ningbo + CountryCode: CHN + District: Zhejiang + Population: 1371200 + - ID: 1916 + Name: Hefei + CountryCode: CHN + District: Anhui + Population: 1369100 + - ID: 1917 + Name: Urumtši [Ürümqi] + CountryCode: CHN + District: Xinxiang + Population: 1310100 + - ID: 1918 + Name: Anshan + CountryCode: CHN + District: Liaoning + Population: 1200000 + - ID: 1919 + Name: Fushun + CountryCode: CHN + District: Liaoning + Population: 1200000 + - ID: 1920 + Name: Nanning + CountryCode: CHN + District: Guangxi + Population: 1161800 + - ID: 1921 + Name: Zibo + CountryCode: CHN + District: Shandong + Population: 1140000 + - ID: 1922 + Name: Qiqihar + CountryCode: CHN + District: Heilongjiang + Population: 1070000 + - ID: 1923 + Name: Jilin + CountryCode: CHN + District: Jilin + Population: 1040000 + - ID: 1924 + Name: Tangshan + CountryCode: CHN + District: Hebei + Population: 1040000 + - ID: 1925 + Name: Baotou + CountryCode: CHN + District: Inner Mongolia + Population: 980000 + - ID: 1926 + Name: Shenzhen + CountryCode: CHN + District: Guangdong + Population: 950500 + - ID: 1927 + Name: Hohhot + CountryCode: CHN + District: Inner Mongolia + Population: 916700 + - ID: 1928 + Name: Handan + CountryCode: CHN + District: Hebei + Population: 840000 + - ID: 1929 + Name: Wuxi + CountryCode: CHN + District: Jiangsu + Population: 830000 + - ID: 1930 + Name: Xuzhou + CountryCode: CHN + District: Jiangsu + Population: 810000 + - ID: 1931 + Name: Datong + CountryCode: CHN + District: Shanxi + Population: 800000 + - ID: 1932 + Name: Yichun + CountryCode: CHN + District: Heilongjiang + Population: 800000 + - ID: 1933 + Name: Benxi + CountryCode: CHN + District: Liaoning + Population: 770000 + - ID: 1934 + Name: Luoyang + CountryCode: CHN + District: Henan + Population: 760000 + - ID: 1935 + Name: Suzhou + CountryCode: CHN + District: Jiangsu + Population: 710000 + - ID: 1936 + Name: Xining + CountryCode: CHN + District: Qinghai + Population: 700200 + - ID: 1937 + Name: Huainan + CountryCode: CHN + District: Anhui + Population: 700000 + - ID: 1938 + Name: Jixi + CountryCode: CHN + District: Heilongjiang + Population: 683885 + - ID: 1939 + Name: Daqing + CountryCode: CHN + District: Heilongjiang + Population: 660000 + - ID: 1940 + Name: Fuxin + CountryCode: CHN + District: Liaoning + Population: 640000 + - ID: 1941 + Name: Amoy [Xiamen] + CountryCode: CHN + District: Fujian + Population: 627500 + - ID: 1942 + Name: Liuzhou + CountryCode: CHN + District: Guangxi + Population: 610000 + - ID: 1943 + Name: Shantou + CountryCode: CHN + District: Guangdong + Population: 580000 + - ID: 1944 + Name: Jinzhou + CountryCode: CHN + District: Liaoning + Population: 570000 + - ID: 1945 + Name: Mudanjiang + CountryCode: CHN + District: Heilongjiang + Population: 570000 + - ID: 1946 + Name: Yinchuan + CountryCode: CHN + District: Ningxia + Population: 544500 + - ID: 1947 + Name: Changzhou + CountryCode: CHN + District: Jiangsu + Population: 530000 + - ID: 1948 + Name: Zhangjiakou + CountryCode: CHN + District: Hebei + Population: 530000 + - ID: 1949 + Name: Dandong + CountryCode: CHN + District: Liaoning + Population: 520000 + - ID: 1950 + Name: Hegang + CountryCode: CHN + District: Heilongjiang + Population: 520000 + - ID: 1951 + Name: Kaifeng + CountryCode: CHN + District: Henan + Population: 510000 + - ID: 1952 + Name: Jiamusi + CountryCode: CHN + District: Heilongjiang + Population: 493409 + - ID: 1953 + Name: Liaoyang + CountryCode: CHN + District: Liaoning + Population: 492559 + - ID: 1954 + Name: Hengyang + CountryCode: CHN + District: Hunan + Population: 487148 + - ID: 1955 + Name: Baoding + CountryCode: CHN + District: Hebei + Population: 483155 + - ID: 1956 + Name: Hunjiang + CountryCode: CHN + District: Jilin + Population: 482043 + - ID: 1957 + Name: Xinxiang + CountryCode: CHN + District: Henan + Population: 473762 + - ID: 1958 + Name: Huangshi + CountryCode: CHN + District: Hubei + Population: 457601 + - ID: 1959 + Name: Haikou + CountryCode: CHN + District: Hainan + Population: 454300 + - ID: 1960 + Name: Yantai + CountryCode: CHN + District: Shandong + Population: 452127 + - ID: 1961 + Name: Bengbu + CountryCode: CHN + District: Anhui + Population: 449245 + - ID: 1962 + Name: Xiangtan + CountryCode: CHN + District: Hunan + Population: 441968 + - ID: 1963 + Name: Weifang + CountryCode: CHN + District: Shandong + Population: 428522 + - ID: 1964 + Name: Wuhu + CountryCode: CHN + District: Anhui + Population: 425740 + - ID: 1965 + Name: Pingxiang + CountryCode: CHN + District: Jiangxi + Population: 425579 + - ID: 1966 + Name: Yingkou + CountryCode: CHN + District: Liaoning + Population: 421589 + - ID: 1967 + Name: Anyang + CountryCode: CHN + District: Henan + Population: 420332 + - ID: 1968 + Name: Panzhihua + CountryCode: CHN + District: Sichuan + Population: 415466 + - ID: 1969 + Name: Pingdingshan + CountryCode: CHN + District: Henan + Population: 410775 + - ID: 1970 + Name: Xiangfan + CountryCode: CHN + District: Hubei + Population: 410407 + - ID: 1971 + Name: Zhuzhou + CountryCode: CHN + District: Hunan + Population: 409924 + - ID: 1972 + Name: Jiaozuo + CountryCode: CHN + District: Henan + Population: 409100 + - ID: 1973 + Name: Wenzhou + CountryCode: CHN + District: Zhejiang + Population: 401871 + - ID: 1974 + Name: Zhangjiang + CountryCode: CHN + District: Guangdong + Population: 400997 + - ID: 1975 + Name: Zigong + CountryCode: CHN + District: Sichuan + Population: 393184 + - ID: 1976 + Name: Shuangyashan + CountryCode: CHN + District: Heilongjiang + Population: 386081 + - ID: 1977 + Name: Zaozhuang + CountryCode: CHN + District: Shandong + Population: 380846 + - ID: 1978 + Name: Yakeshi + CountryCode: CHN + District: Inner Mongolia + Population: 377869 + - ID: 1979 + Name: Yichang + CountryCode: CHN + District: Hubei + Population: 371601 + - ID: 1980 + Name: Zhenjiang + CountryCode: CHN + District: Jiangsu + Population: 368316 + - ID: 1981 + Name: Huaibei + CountryCode: CHN + District: Anhui + Population: 366549 + - ID: 1982 + Name: Qinhuangdao + CountryCode: CHN + District: Hebei + Population: 364972 + - ID: 1983 + Name: Guilin + CountryCode: CHN + District: Guangxi + Population: 364130 + - ID: 1984 + Name: Liupanshui + CountryCode: CHN + District: Guizhou + Population: 363954 + - ID: 1985 + Name: Panjin + CountryCode: CHN + District: Liaoning + Population: 362773 + - ID: 1986 + Name: Yangquan + CountryCode: CHN + District: Shanxi + Population: 362268 + - ID: 1987 + Name: Jinxi + CountryCode: CHN + District: Liaoning + Population: 357052 + - ID: 1988 + Name: Liaoyuan + CountryCode: CHN + District: Jilin + Population: 354141 + - ID: 1989 + Name: Lianyungang + CountryCode: CHN + District: Jiangsu + Population: 354139 + - ID: 1990 + Name: Xianyang + CountryCode: CHN + District: Shaanxi + Population: 352125 + - ID: 1991 + Name: Tai´an + CountryCode: CHN + District: Shandong + Population: 350696 + - ID: 1992 + Name: Chifeng + CountryCode: CHN + District: Inner Mongolia + Population: 350077 + - ID: 1993 + Name: Shaoguan + CountryCode: CHN + District: Guangdong + Population: 350043 + - ID: 1994 + Name: Nantong + CountryCode: CHN + District: Jiangsu + Population: 343341 + - ID: 1995 + Name: Leshan + CountryCode: CHN + District: Sichuan + Population: 341128 + - ID: 1996 + Name: Baoji + CountryCode: CHN + District: Shaanxi + Population: 337765 + - ID: 1997 + Name: Linyi + CountryCode: CHN + District: Shandong + Population: 324720 + - ID: 1998 + Name: Tonghua + CountryCode: CHN + District: Jilin + Population: 324600 + - ID: 1999 + Name: Siping + CountryCode: CHN + District: Jilin + Population: 317223 + - ID: 2000 + Name: Changzhi + CountryCode: CHN + District: Shanxi + Population: 317144 + - ID: 2001 + Name: Tengzhou + CountryCode: CHN + District: Shandong + Population: 315083 + - ID: 2002 + Name: Chaozhou + CountryCode: CHN + District: Guangdong + Population: 313469 + - ID: 2003 + Name: Yangzhou + CountryCode: CHN + District: Jiangsu + Population: 312892 + - ID: 2004 + Name: Dongwan + CountryCode: CHN + District: Guangdong + Population: 308669 + - ID: 2005 + Name: Ma´anshan + CountryCode: CHN + District: Anhui + Population: 305421 + - ID: 2006 + Name: Foshan + CountryCode: CHN + District: Guangdong + Population: 303160 + - ID: 2007 + Name: Yueyang + CountryCode: CHN + District: Hunan + Population: 302800 + - ID: 2008 + Name: Xingtai + CountryCode: CHN + District: Hebei + Population: 302789 + - ID: 2009 + Name: Changde + CountryCode: CHN + District: Hunan + Population: 301276 + - ID: 2010 + Name: Shihezi + CountryCode: CHN + District: Xinxiang + Population: 299676 + - ID: 2011 + Name: Yancheng + CountryCode: CHN + District: Jiangsu + Population: 296831 + - ID: 2012 + Name: Jiujiang + CountryCode: CHN + District: Jiangxi + Population: 291187 + - ID: 2013 + Name: Dongying + CountryCode: CHN + District: Shandong + Population: 281728 + - ID: 2014 + Name: Shashi + CountryCode: CHN + District: Hubei + Population: 281352 + - ID: 2015 + Name: Xintai + CountryCode: CHN + District: Shandong + Population: 281248 + - ID: 2016 + Name: Jingdezhen + CountryCode: CHN + District: Jiangxi + Population: 281183 + - ID: 2017 + Name: Tongchuan + CountryCode: CHN + District: Shaanxi + Population: 280657 + - ID: 2018 + Name: Zhongshan + CountryCode: CHN + District: Guangdong + Population: 278829 + - ID: 2019 + Name: Shiyan + CountryCode: CHN + District: Hubei + Population: 273786 + - ID: 2020 + Name: Tieli + CountryCode: CHN + District: Heilongjiang + Population: 265683 + - ID: 2021 + Name: Jining + CountryCode: CHN + District: Shandong + Population: 265248 + - ID: 2022 + Name: Wuhai + CountryCode: CHN + District: Inner Mongolia + Population: 264081 + - ID: 2023 + Name: Mianyang + CountryCode: CHN + District: Sichuan + Population: 262947 + - ID: 2024 + Name: Luzhou + CountryCode: CHN + District: Sichuan + Population: 262892 + - ID: 2025 + Name: Zunyi + CountryCode: CHN + District: Guizhou + Population: 261862 + - ID: 2026 + Name: Shizuishan + CountryCode: CHN + District: Ningxia + Population: 257862 + - ID: 2027 + Name: Neijiang + CountryCode: CHN + District: Sichuan + Population: 256012 + - ID: 2028 + Name: Tongliao + CountryCode: CHN + District: Inner Mongolia + Population: 255129 + - ID: 2029 + Name: Tieling + CountryCode: CHN + District: Liaoning + Population: 254842 + - ID: 2030 + Name: Wafangdian + CountryCode: CHN + District: Liaoning + Population: 251733 + - ID: 2031 + Name: Anqing + CountryCode: CHN + District: Anhui + Population: 250718 + - ID: 2032 + Name: Shaoyang + CountryCode: CHN + District: Hunan + Population: 247227 + - ID: 2033 + Name: Laiwu + CountryCode: CHN + District: Shandong + Population: 246833 + - ID: 2034 + Name: Chengde + CountryCode: CHN + District: Hebei + Population: 246799 + - ID: 2035 + Name: Tianshui + CountryCode: CHN + District: Gansu + Population: 244974 + - ID: 2036 + Name: Nanyang + CountryCode: CHN + District: Henan + Population: 243303 + - ID: 2037 + Name: Cangzhou + CountryCode: CHN + District: Hebei + Population: 242708 + - ID: 2038 + Name: Yibin + CountryCode: CHN + District: Sichuan + Population: 241019 + - ID: 2039 + Name: Huaiyin + CountryCode: CHN + District: Jiangsu + Population: 239675 + - ID: 2040 + Name: Dunhua + CountryCode: CHN + District: Jilin + Population: 235100 + - ID: 2041 + Name: Yanji + CountryCode: CHN + District: Jilin + Population: 230892 + - ID: 2042 + Name: Jiangmen + CountryCode: CHN + District: Guangdong + Population: 230587 + - ID: 2043 + Name: Tongling + CountryCode: CHN + District: Anhui + Population: 228017 + - ID: 2044 + Name: Suihua + CountryCode: CHN + District: Heilongjiang + Population: 227881 + - ID: 2045 + Name: Gongziling + CountryCode: CHN + District: Jilin + Population: 226569 + - ID: 2046 + Name: Xiantao + CountryCode: CHN + District: Hubei + Population: 222884 + - ID: 2047 + Name: Chaoyang + CountryCode: CHN + District: Liaoning + Population: 222394 + - ID: 2048 + Name: Ganzhou + CountryCode: CHN + District: Jiangxi + Population: 220129 + - ID: 2049 + Name: Huzhou + CountryCode: CHN + District: Zhejiang + Population: 218071 + - ID: 2050 + Name: Baicheng + CountryCode: CHN + District: Jilin + Population: 217987 + - ID: 2051 + Name: Shangzi + CountryCode: CHN + District: Heilongjiang + Population: 215373 + - ID: 2052 + Name: Yangjiang + CountryCode: CHN + District: Guangdong + Population: 215196 + - ID: 2053 + Name: Qitaihe + CountryCode: CHN + District: Heilongjiang + Population: 214957 + - ID: 2054 + Name: Gejiu + CountryCode: CHN + District: Yunnan + Population: 214294 + - ID: 2055 + Name: Jiangyin + CountryCode: CHN + District: Jiangsu + Population: 213659 + - ID: 2056 + Name: Hebi + CountryCode: CHN + District: Henan + Population: 212976 + - ID: 2057 + Name: Jiaxing + CountryCode: CHN + District: Zhejiang + Population: 211526 + - ID: 2058 + Name: Wuzhou + CountryCode: CHN + District: Guangxi + Population: 210452 + - ID: 2059 + Name: Meihekou + CountryCode: CHN + District: Jilin + Population: 209038 + - ID: 2060 + Name: Xuchang + CountryCode: CHN + District: Henan + Population: 208815 + - ID: 2061 + Name: Liaocheng + CountryCode: CHN + District: Shandong + Population: 207844 + - ID: 2062 + Name: Haicheng + CountryCode: CHN + District: Liaoning + Population: 205560 + - ID: 2063 + Name: Qianjiang + CountryCode: CHN + District: Hubei + Population: 205504 + - ID: 2064 + Name: Baiyin + CountryCode: CHN + District: Gansu + Population: 204970 + - ID: 2065 + Name: Bei´an + CountryCode: CHN + District: Heilongjiang + Population: 204899 + - ID: 2066 + Name: Yixing + CountryCode: CHN + District: Jiangsu + Population: 200824 + - ID: 2067 + Name: Laizhou + CountryCode: CHN + District: Shandong + Population: 198664 + - ID: 2068 + Name: Qaramay + CountryCode: CHN + District: Xinxiang + Population: 197602 + - ID: 2069 + Name: Acheng + CountryCode: CHN + District: Heilongjiang + Population: 197595 + - ID: 2070 + Name: Dezhou + CountryCode: CHN + District: Shandong + Population: 195485 + - ID: 2071 + Name: Nanping + CountryCode: CHN + District: Fujian + Population: 195064 + - ID: 2072 + Name: Zhaoqing + CountryCode: CHN + District: Guangdong + Population: 194784 + - ID: 2073 + Name: Beipiao + CountryCode: CHN + District: Liaoning + Population: 194301 + - ID: 2074 + Name: Fengcheng + CountryCode: CHN + District: Jiangxi + Population: 193784 + - ID: 2075 + Name: Fuyu + CountryCode: CHN + District: Jilin + Population: 192981 + - ID: 2076 + Name: Xinyang + CountryCode: CHN + District: Henan + Population: 192509 + - ID: 2077 + Name: Dongtai + CountryCode: CHN + District: Jiangsu + Population: 192247 + - ID: 2078 + Name: Yuci + CountryCode: CHN + District: Shanxi + Population: 191356 + - ID: 2079 + Name: Honghu + CountryCode: CHN + District: Hubei + Population: 190772 + - ID: 2080 + Name: Ezhou + CountryCode: CHN + District: Hubei + Population: 190123 + - ID: 2081 + Name: Heze + CountryCode: CHN + District: Shandong + Population: 189293 + - ID: 2082 + Name: Daxian + CountryCode: CHN + District: Sichuan + Population: 188101 + - ID: 2083 + Name: Linfen + CountryCode: CHN + District: Shanxi + Population: 187309 + - ID: 2084 + Name: Tianmen + CountryCode: CHN + District: Hubei + Population: 186332 + - ID: 2085 + Name: Yiyang + CountryCode: CHN + District: Hunan + Population: 185818 + - ID: 2086 + Name: Quanzhou + CountryCode: CHN + District: Fujian + Population: 185154 + - ID: 2087 + Name: Rizhao + CountryCode: CHN + District: Shandong + Population: 185048 + - ID: 2088 + Name: Deyang + CountryCode: CHN + District: Sichuan + Population: 182488 + - ID: 2089 + Name: Guangyuan + CountryCode: CHN + District: Sichuan + Population: 182241 + - ID: 2090 + Name: Changshu + CountryCode: CHN + District: Jiangsu + Population: 181805 + - ID: 2091 + Name: Zhangzhou + CountryCode: CHN + District: Fujian + Population: 181424 + - ID: 2092 + Name: Hailar + CountryCode: CHN + District: Inner Mongolia + Population: 180650 + - ID: 2093 + Name: Nanchong + CountryCode: CHN + District: Sichuan + Population: 180273 + - ID: 2094 + Name: Jiutai + CountryCode: CHN + District: Jilin + Population: 180130 + - ID: 2095 + Name: Zhaodong + CountryCode: CHN + District: Heilongjiang + Population: 179976 + - ID: 2096 + Name: Shaoxing + CountryCode: CHN + District: Zhejiang + Population: 179818 + - ID: 2097 + Name: Fuyang + CountryCode: CHN + District: Anhui + Population: 179572 + - ID: 2098 + Name: Maoming + CountryCode: CHN + District: Guangdong + Population: 178683 + - ID: 2099 + Name: Qujing + CountryCode: CHN + District: Yunnan + Population: 178669 + - ID: 2100 + Name: Ghulja + CountryCode: CHN + District: Xinxiang + Population: 177193 + - ID: 2101 + Name: Jiaohe + CountryCode: CHN + District: Jilin + Population: 176367 + - ID: 2102 + Name: Puyang + CountryCode: CHN + District: Henan + Population: 175988 + - ID: 2103 + Name: Huadian + CountryCode: CHN + District: Jilin + Population: 175873 + - ID: 2104 + Name: Jiangyou + CountryCode: CHN + District: Sichuan + Population: 175753 + - ID: 2105 + Name: Qashqar + CountryCode: CHN + District: Xinxiang + Population: 174570 + - ID: 2106 + Name: Anshun + CountryCode: CHN + District: Guizhou + Population: 174142 + - ID: 2107 + Name: Fuling + CountryCode: CHN + District: Sichuan + Population: 173878 + - ID: 2108 + Name: Xinyu + CountryCode: CHN + District: Jiangxi + Population: 173524 + - ID: 2109 + Name: Hanzhong + CountryCode: CHN + District: Shaanxi + Population: 169930 + - ID: 2110 + Name: Danyang + CountryCode: CHN + District: Jiangsu + Population: 169603 + - ID: 2111 + Name: Chenzhou + CountryCode: CHN + District: Hunan + Population: 169400 + - ID: 2112 + Name: Xiaogan + CountryCode: CHN + District: Hubei + Population: 166280 + - ID: 2113 + Name: Shangqiu + CountryCode: CHN + District: Henan + Population: 164880 + - ID: 2114 + Name: Zhuhai + CountryCode: CHN + District: Guangdong + Population: 164747 + - ID: 2115 + Name: Qingyuan + CountryCode: CHN + District: Guangdong + Population: 164641 + - ID: 2116 + Name: Aqsu + CountryCode: CHN + District: Xinxiang + Population: 164092 + - ID: 2117 + Name: Jining + CountryCode: CHN + District: Inner Mongolia + Population: 163552 + - ID: 2118 + Name: Xiaoshan + CountryCode: CHN + District: Zhejiang + Population: 162930 + - ID: 2119 + Name: Zaoyang + CountryCode: CHN + District: Hubei + Population: 162198 + - ID: 2120 + Name: Xinghua + CountryCode: CHN + District: Jiangsu + Population: 161910 + - ID: 2121 + Name: Hami + CountryCode: CHN + District: Xinxiang + Population: 161315 + - ID: 2122 + Name: Huizhou + CountryCode: CHN + District: Guangdong + Population: 161023 + - ID: 2123 + Name: Jinmen + CountryCode: CHN + District: Hubei + Population: 160794 + - ID: 2124 + Name: Sanming + CountryCode: CHN + District: Fujian + Population: 160691 + - ID: 2125 + Name: Ulanhot + CountryCode: CHN + District: Inner Mongolia + Population: 159538 + - ID: 2126 + Name: Korla + CountryCode: CHN + District: Xinxiang + Population: 159344 + - ID: 2127 + Name: Wanxian + CountryCode: CHN + District: Sichuan + Population: 156823 + - ID: 2128 + Name: Rui´an + CountryCode: CHN + District: Zhejiang + Population: 156468 + - ID: 2129 + Name: Zhoushan + CountryCode: CHN + District: Zhejiang + Population: 156317 + - ID: 2130 + Name: Liangcheng + CountryCode: CHN + District: Shandong + Population: 156307 + - ID: 2131 + Name: Jiaozhou + CountryCode: CHN + District: Shandong + Population: 153364 + - ID: 2132 + Name: Taizhou + CountryCode: CHN + District: Jiangsu + Population: 152442 + - ID: 2133 + Name: Suzhou + CountryCode: CHN + District: Anhui + Population: 151862 + - ID: 2134 + Name: Yichun + CountryCode: CHN + District: Jiangxi + Population: 151585 + - ID: 2135 + Name: Taonan + CountryCode: CHN + District: Jilin + Population: 150168 + - ID: 2136 + Name: Pingdu + CountryCode: CHN + District: Shandong + Population: 150123 + - ID: 2137 + Name: Ji´an + CountryCode: CHN + District: Jiangxi + Population: 148583 + - ID: 2138 + Name: Longkou + CountryCode: CHN + District: Shandong + Population: 148362 + - ID: 2139 + Name: Langfang + CountryCode: CHN + District: Hebei + Population: 148105 + - ID: 2140 + Name: Zhoukou + CountryCode: CHN + District: Henan + Population: 146288 + - ID: 2141 + Name: Suining + CountryCode: CHN + District: Sichuan + Population: 146086 + - ID: 2142 + Name: Yulin + CountryCode: CHN + District: Guangxi + Population: 144467 + - ID: 2143 + Name: Jinhua + CountryCode: CHN + District: Zhejiang + Population: 144280 + - ID: 2144 + Name: Liu´an + CountryCode: CHN + District: Anhui + Population: 144248 + - ID: 2145 + Name: Shuangcheng + CountryCode: CHN + District: Heilongjiang + Population: 142659 + - ID: 2146 + Name: Suizhou + CountryCode: CHN + District: Hubei + Population: 142302 + - ID: 2147 + Name: Ankang + CountryCode: CHN + District: Shaanxi + Population: 142170 + - ID: 2148 + Name: Weinan + CountryCode: CHN + District: Shaanxi + Population: 140169 + - ID: 2149 + Name: Longjing + CountryCode: CHN + District: Jilin + Population: 139417 + - ID: 2150 + Name: Da´an + CountryCode: CHN + District: Jilin + Population: 138963 + - ID: 2151 + Name: Lengshuijiang + CountryCode: CHN + District: Hunan + Population: 137994 + - ID: 2152 + Name: Laiyang + CountryCode: CHN + District: Shandong + Population: 137080 + - ID: 2153 + Name: Xianning + CountryCode: CHN + District: Hubei + Population: 136811 + - ID: 2154 + Name: Dali + CountryCode: CHN + District: Yunnan + Population: 136554 + - ID: 2155 + Name: Anda + CountryCode: CHN + District: Heilongjiang + Population: 136446 + - ID: 2156 + Name: Jincheng + CountryCode: CHN + District: Shanxi + Population: 136396 + - ID: 2157 + Name: Longyan + CountryCode: CHN + District: Fujian + Population: 134481 + - ID: 2158 + Name: Xichang + CountryCode: CHN + District: Sichuan + Population: 134419 + - ID: 2159 + Name: Wendeng + CountryCode: CHN + District: Shandong + Population: 133910 + - ID: 2160 + Name: Hailun + CountryCode: CHN + District: Heilongjiang + Population: 133565 + - ID: 2161 + Name: Binzhou + CountryCode: CHN + District: Shandong + Population: 133555 + - ID: 2162 + Name: Linhe + CountryCode: CHN + District: Inner Mongolia + Population: 133183 + - ID: 2163 + Name: Wuwei + CountryCode: CHN + District: Gansu + Population: 133101 + - ID: 2164 + Name: Duyun + CountryCode: CHN + District: Guizhou + Population: 132971 + - ID: 2165 + Name: Mishan + CountryCode: CHN + District: Heilongjiang + Population: 132744 + - ID: 2166 + Name: Shangrao + CountryCode: CHN + District: Jiangxi + Population: 132455 + - ID: 2167 + Name: Changji + CountryCode: CHN + District: Xinxiang + Population: 132260 + - ID: 2168 + Name: Meixian + CountryCode: CHN + District: Guangdong + Population: 132156 + - ID: 2169 + Name: Yushu + CountryCode: CHN + District: Jilin + Population: 131861 + - ID: 2170 + Name: Tiefa + CountryCode: CHN + District: Liaoning + Population: 131807 + - ID: 2171 + Name: Huai´an + CountryCode: CHN + District: Jiangsu + Population: 131149 + - ID: 2172 + Name: Leiyang + CountryCode: CHN + District: Hunan + Population: 130115 + - ID: 2173 + Name: Zalantun + CountryCode: CHN + District: Inner Mongolia + Population: 130031 + - ID: 2174 + Name: Weihai + CountryCode: CHN + District: Shandong + Population: 128888 + - ID: 2175 + Name: Loudi + CountryCode: CHN + District: Hunan + Population: 128418 + - ID: 2176 + Name: Qingzhou + CountryCode: CHN + District: Shandong + Population: 128258 + - ID: 2177 + Name: Qidong + CountryCode: CHN + District: Jiangsu + Population: 126872 + - ID: 2178 + Name: Huaihua + CountryCode: CHN + District: Hunan + Population: 126785 + - ID: 2179 + Name: Luohe + CountryCode: CHN + District: Henan + Population: 126438 + - ID: 2180 + Name: Chuzhou + CountryCode: CHN + District: Anhui + Population: 125341 + - ID: 2181 + Name: Kaiyuan + CountryCode: CHN + District: Liaoning + Population: 124219 + - ID: 2182 + Name: Linqing + CountryCode: CHN + District: Shandong + Population: 123958 + - ID: 2183 + Name: Chaohu + CountryCode: CHN + District: Anhui + Population: 123676 + - ID: 2184 + Name: Laohekou + CountryCode: CHN + District: Hubei + Population: 123366 + - ID: 2185 + Name: Dujiangyan + CountryCode: CHN + District: Sichuan + Population: 123357 + - ID: 2186 + Name: Zhumadian + CountryCode: CHN + District: Henan + Population: 123232 + - ID: 2187 + Name: Linchuan + CountryCode: CHN + District: Jiangxi + Population: 121949 + - ID: 2188 + Name: Jiaonan + CountryCode: CHN + District: Shandong + Population: 121397 + - ID: 2189 + Name: Sanmenxia + CountryCode: CHN + District: Henan + Population: 120523 + - ID: 2190 + Name: Heyuan + CountryCode: CHN + District: Guangdong + Population: 120101 + - ID: 2191 + Name: Manzhouli + CountryCode: CHN + District: Inner Mongolia + Population: 120023 + - ID: 2192 + Name: Lhasa + CountryCode: CHN + District: Tibet + Population: 120000 + - ID: 2193 + Name: Lianyuan + CountryCode: CHN + District: Hunan + Population: 118858 + - ID: 2194 + Name: Kuytun + CountryCode: CHN + District: Xinxiang + Population: 118553 + - ID: 2195 + Name: Puqi + CountryCode: CHN + District: Hubei + Population: 117264 + - ID: 2196 + Name: Hongjiang + CountryCode: CHN + District: Hunan + Population: 116188 + - ID: 2197 + Name: Qinzhou + CountryCode: CHN + District: Guangxi + Population: 114586 + - ID: 2198 + Name: Renqiu + CountryCode: CHN + District: Hebei + Population: 114256 + - ID: 2199 + Name: Yuyao + CountryCode: CHN + District: Zhejiang + Population: 114065 + - ID: 2200 + Name: Guigang + CountryCode: CHN + District: Guangxi + Population: 114025 + - ID: 2201 + Name: Kaili + CountryCode: CHN + District: Guizhou + Population: 113958 + - ID: 2202 + Name: Yan´an + CountryCode: CHN + District: Shaanxi + Population: 113277 + - ID: 2203 + Name: Beihai + CountryCode: CHN + District: Guangxi + Population: 112673 + - ID: 2204 + Name: Xuangzhou + CountryCode: CHN + District: Anhui + Population: 112673 + - ID: 2205 + Name: Quzhou + CountryCode: CHN + District: Zhejiang + Population: 112373 + - ID: 2206 + Name: Yong´an + CountryCode: CHN + District: Fujian + Population: 111762 + - ID: 2207 + Name: Zixing + CountryCode: CHN + District: Hunan + Population: 110048 + - ID: 2208 + Name: Liyang + CountryCode: CHN + District: Jiangsu + Population: 109520 + - ID: 2209 + Name: Yizheng + CountryCode: CHN + District: Jiangsu + Population: 109268 + - ID: 2210 + Name: Yumen + CountryCode: CHN + District: Gansu + Population: 109234 + - ID: 2211 + Name: Liling + CountryCode: CHN + District: Hunan + Population: 108504 + - ID: 2212 + Name: Yuncheng + CountryCode: CHN + District: Shanxi + Population: 108359 + - ID: 2213 + Name: Shanwei + CountryCode: CHN + District: Guangdong + Population: 107847 + - ID: 2214 + Name: Cixi + CountryCode: CHN + District: Zhejiang + Population: 107329 + - ID: 2215 + Name: Yuanjiang + CountryCode: CHN + District: Hunan + Population: 107004 + - ID: 2216 + Name: Bozhou + CountryCode: CHN + District: Anhui + Population: 106346 + - ID: 2217 + Name: Jinchang + CountryCode: CHN + District: Gansu + Population: 105287 + - ID: 2218 + Name: Fu´an + CountryCode: CHN + District: Fujian + Population: 105265 + - ID: 2219 + Name: Suqian + CountryCode: CHN + District: Jiangsu + Population: 105021 + - ID: 2220 + Name: Shishou + CountryCode: CHN + District: Hubei + Population: 104571 + - ID: 2221 + Name: Hengshui + CountryCode: CHN + District: Hebei + Population: 104269 + - ID: 2222 + Name: Danjiangkou + CountryCode: CHN + District: Hubei + Population: 103211 + - ID: 2223 + Name: Fujin + CountryCode: CHN + District: Heilongjiang + Population: 103104 + - ID: 2224 + Name: Sanya + CountryCode: CHN + District: Hainan + Population: 102820 + - ID: 2225 + Name: Guangshui + CountryCode: CHN + District: Hubei + Population: 102770 + - ID: 2226 + Name: Huangshan + CountryCode: CHN + District: Anhui + Population: 102628 + - ID: 2227 + Name: Xingcheng + CountryCode: CHN + District: Liaoning + Population: 102384 + - ID: 2228 + Name: Zhucheng + CountryCode: CHN + District: Shandong + Population: 102134 + - ID: 2229 + Name: Kunshan + CountryCode: CHN + District: Jiangsu + Population: 102052 + - ID: 2230 + Name: Haining + CountryCode: CHN + District: Zhejiang + Population: 100478 + - ID: 2231 + Name: Pingliang + CountryCode: CHN + District: Gansu + Population: 99265 + - ID: 2232 + Name: Fuqing + CountryCode: CHN + District: Fujian + Population: 99193 + - ID: 2233 + Name: Xinzhou + CountryCode: CHN + District: Shanxi + Population: 98667 + - ID: 2234 + Name: Jieyang + CountryCode: CHN + District: Guangdong + Population: 98531 + - ID: 2235 + Name: Zhangjiagang + CountryCode: CHN + District: Jiangsu + Population: 97994 + - ID: 2236 + Name: Tong Xian + CountryCode: CHN + District: Peking + Population: 97168 + - ID: 2237 + Name: Ya´an + CountryCode: CHN + District: Sichuan + Population: 95900 + - ID: 2238 + Name: Jinzhou + CountryCode: CHN + District: Liaoning + Population: 95761 + - ID: 2239 + Name: Emeishan + CountryCode: CHN + District: Sichuan + Population: 94000 + - ID: 2240 + Name: Enshi + CountryCode: CHN + District: Hubei + Population: 93056 + - ID: 2241 + Name: Bose + CountryCode: CHN + District: Guangxi + Population: 93009 + - ID: 2242 + Name: Yuzhou + CountryCode: CHN + District: Henan + Population: 92889 + - ID: 2243 + Name: Kaiyuan + CountryCode: CHN + District: Yunnan + Population: 91999 + - ID: 2244 + Name: Tumen + CountryCode: CHN + District: Jilin + Population: 91471 + - ID: 2245 + Name: Putian + CountryCode: CHN + District: Fujian + Population: 91030 + - ID: 2246 + Name: Linhai + CountryCode: CHN + District: Zhejiang + Population: 90870 + - ID: 2247 + Name: Xilin Hot + CountryCode: CHN + District: Inner Mongolia + Population: 90646 + - ID: 2248 + Name: Shaowu + CountryCode: CHN + District: Fujian + Population: 90286 + - ID: 2249 + Name: Junan + CountryCode: CHN + District: Shandong + Population: 90222 + - ID: 2250 + Name: Huaying + CountryCode: CHN + District: Sichuan + Population: 89400 + - ID: 2251 + Name: Pingyi + CountryCode: CHN + District: Shandong + Population: 89373 + - ID: 2252 + Name: Huangyan + CountryCode: CHN + District: Zhejiang + Population: 89288 + - ID: 2253 + Name: Bishkek + CountryCode: KGZ + District: Bishkek shaary + Population: 589400 + - ID: 2254 + Name: Osh + CountryCode: KGZ + District: Osh + Population: 222700 + - ID: 2255 + Name: Bikenibeu + CountryCode: KIR + District: South Tarawa + Population: 5055 + - ID: 2256 + Name: Bairiki + CountryCode: KIR + District: South Tarawa + Population: 2226 + - ID: 2257 + Name: Santafé de Bogotá + CountryCode: COL + District: Santafé de Bogotá + Population: 6260862 + - ID: 2258 + Name: Cali + CountryCode: COL + District: Valle + Population: 2077386 + - ID: 2259 + Name: Medellín + CountryCode: COL + District: Antioquia + Population: 1861265 + - ID: 2260 + Name: Barranquilla + CountryCode: COL + District: Atlántico + Population: 1223260 + - ID: 2261 + Name: Cartagena + CountryCode: COL + District: Bolívar + Population: 805757 + - ID: 2262 + Name: Cúcuta + CountryCode: COL + District: Norte de Santander + Population: 606932 + - ID: 2263 + Name: Bucaramanga + CountryCode: COL + District: Santander + Population: 515555 + - ID: 2264 + Name: Ibagué + CountryCode: COL + District: Tolima + Population: 393664 + - ID: 2265 + Name: Pereira + CountryCode: COL + District: Risaralda + Population: 381725 + - ID: 2266 + Name: Santa Marta + CountryCode: COL + District: Magdalena + Population: 359147 + - ID: 2267 + Name: Manizales + CountryCode: COL + District: Caldas + Population: 337580 + - ID: 2268 + Name: Bello + CountryCode: COL + District: Antioquia + Population: 333470 + - ID: 2269 + Name: Pasto + CountryCode: COL + District: Nariño + Population: 332396 + - ID: 2270 + Name: Neiva + CountryCode: COL + District: Huila + Population: 300052 + - ID: 2271 + Name: Soledad + CountryCode: COL + District: Atlántico + Population: 295058 + - ID: 2272 + Name: Armenia + CountryCode: COL + District: Quindío + Population: 288977 + - ID: 2273 + Name: Villavicencio + CountryCode: COL + District: Meta + Population: 273140 + - ID: 2274 + Name: Soacha + CountryCode: COL + District: Cundinamarca + Population: 272058 + - ID: 2275 + Name: Valledupar + CountryCode: COL + District: Cesar + Population: 263247 + - ID: 2276 + Name: Montería + CountryCode: COL + District: Córdoba + Population: 248245 + - ID: 2277 + Name: Itagüí + CountryCode: COL + District: Antioquia + Population: 228985 + - ID: 2278 + Name: Palmira + CountryCode: COL + District: Valle + Population: 226509 + - ID: 2279 + Name: Buenaventura + CountryCode: COL + District: Valle + Population: 224336 + - ID: 2280 + Name: Floridablanca + CountryCode: COL + District: Santander + Population: 221913 + - ID: 2281 + Name: Sincelejo + CountryCode: COL + District: Sucre + Population: 220704 + - ID: 2282 + Name: Popayán + CountryCode: COL + District: Cauca + Population: 200719 + - ID: 2283 + Name: Barrancabermeja + CountryCode: COL + District: Santander + Population: 178020 + - ID: 2284 + Name: Dos Quebradas + CountryCode: COL + District: Risaralda + Population: 159363 + - ID: 2285 + Name: Tuluá + CountryCode: COL + District: Valle + Population: 152488 + - ID: 2286 + Name: Envigado + CountryCode: COL + District: Antioquia + Population: 135848 + - ID: 2287 + Name: Cartago + CountryCode: COL + District: Valle + Population: 125884 + - ID: 2288 + Name: Girardot + CountryCode: COL + District: Cundinamarca + Population: 110963 + - ID: 2289 + Name: Buga + CountryCode: COL + District: Valle + Population: 110699 + - ID: 2290 + Name: Tunja + CountryCode: COL + District: Boyacá + Population: 109740 + - ID: 2291 + Name: Florencia + CountryCode: COL + District: Caquetá + Population: 108574 + - ID: 2292 + Name: Maicao + CountryCode: COL + District: La Guajira + Population: 108053 + - ID: 2293 + Name: Sogamoso + CountryCode: COL + District: Boyacá + Population: 107728 + - ID: 2294 + Name: Giron + CountryCode: COL + District: Santander + Population: 90688 + - ID: 2295 + Name: Moroni + CountryCode: COM + District: Njazidja + Population: 36000 + - ID: 2296 + Name: Brazzaville + CountryCode: COG + District: Brazzaville + Population: 950000 + - ID: 2297 + Name: Pointe-Noire + CountryCode: COG + District: Kouilou + Population: 500000 + - ID: 2298 + Name: Kinshasa + CountryCode: COD + District: Kinshasa + Population: 5064000 + - ID: 2299 + Name: Lubumbashi + CountryCode: COD + District: Shaba + Population: 851381 + - ID: 2300 + Name: Mbuji-Mayi + CountryCode: COD + District: East Kasai + Population: 806475 + - ID: 2301 + Name: Kolwezi + CountryCode: COD + District: Shaba + Population: 417810 + - ID: 2302 + Name: Kisangani + CountryCode: COD + District: Haute-Zaïre + Population: 417517 + - ID: 2303 + Name: Kananga + CountryCode: COD + District: West Kasai + Population: 393030 + - ID: 2304 + Name: Likasi + CountryCode: COD + District: Shaba + Population: 299118 + - ID: 2305 + Name: Bukavu + CountryCode: COD + District: South Kivu + Population: 201569 + - ID: 2306 + Name: Kikwit + CountryCode: COD + District: Bandundu + Population: 182142 + - ID: 2307 + Name: Tshikapa + CountryCode: COD + District: West Kasai + Population: 180860 + - ID: 2308 + Name: Matadi + CountryCode: COD + District: Bas-Zaïre + Population: 172730 + - ID: 2309 + Name: Mbandaka + CountryCode: COD + District: Equateur + Population: 169841 + - ID: 2310 + Name: Mwene-Ditu + CountryCode: COD + District: East Kasai + Population: 137459 + - ID: 2311 + Name: Boma + CountryCode: COD + District: Bas-Zaïre + Population: 135284 + - ID: 2312 + Name: Uvira + CountryCode: COD + District: South Kivu + Population: 115590 + - ID: 2313 + Name: Butembo + CountryCode: COD + District: North Kivu + Population: 109406 + - ID: 2314 + Name: Goma + CountryCode: COD + District: North Kivu + Population: 109094 + - ID: 2315 + Name: Kalemie + CountryCode: COD + District: Shaba + Population: 101309 + - ID: 2316 + Name: Bantam + CountryCode: CCK + District: Home Island + Population: 503 + - ID: 2317 + Name: West Island + CountryCode: CCK + District: West Island + Population: 167 + - ID: 2318 + Name: Pyongyang + CountryCode: PRK + District: Pyongyang-si + Population: 2484000 + - ID: 2319 + Name: Hamhung + CountryCode: PRK + District: Hamgyong N + Population: 709730 + - ID: 2320 + Name: Chongjin + CountryCode: PRK + District: Hamgyong P + Population: 582480 + - ID: 2321 + Name: Nampo + CountryCode: PRK + District: Nampo-si + Population: 566200 + - ID: 2322 + Name: Sinuiju + CountryCode: PRK + District: Pyongan P + Population: 326011 + - ID: 2323 + Name: Wonsan + CountryCode: PRK + District: Kangwon + Population: 300148 + - ID: 2324 + Name: Phyongsong + CountryCode: PRK + District: Pyongan N + Population: 272934 + - ID: 2325 + Name: Sariwon + CountryCode: PRK + District: Hwanghae P + Population: 254146 + - ID: 2326 + Name: Haeju + CountryCode: PRK + District: Hwanghae N + Population: 229172 + - ID: 2327 + Name: Kanggye + CountryCode: PRK + District: Chagang + Population: 223410 + - ID: 2328 + Name: Kimchaek + CountryCode: PRK + District: Hamgyong P + Population: 179000 + - ID: 2329 + Name: Hyesan + CountryCode: PRK + District: Yanggang + Population: 178020 + - ID: 2330 + Name: Kaesong + CountryCode: PRK + District: Kaesong-si + Population: 171500 + - ID: 2331 + Name: Seoul + CountryCode: KOR + District: Seoul + Population: 9981619 + - ID: 2332 + Name: Pusan + CountryCode: KOR + District: Pusan + Population: 3804522 + - ID: 2333 + Name: Inchon + CountryCode: KOR + District: Inchon + Population: 2559424 + - ID: 2334 + Name: Taegu + CountryCode: KOR + District: Taegu + Population: 2548568 + - ID: 2335 + Name: Taejon + CountryCode: KOR + District: Taejon + Population: 1425835 + - ID: 2336 + Name: Kwangju + CountryCode: KOR + District: Kwangju + Population: 1368341 + - ID: 2337 + Name: Ulsan + CountryCode: KOR + District: Kyongsangnam + Population: 1084891 + - ID: 2338 + Name: Songnam + CountryCode: KOR + District: Kyonggi + Population: 869094 + - ID: 2339 + Name: Puchon + CountryCode: KOR + District: Kyonggi + Population: 779412 + - ID: 2340 + Name: Suwon + CountryCode: KOR + District: Kyonggi + Population: 755550 + - ID: 2341 + Name: Anyang + CountryCode: KOR + District: Kyonggi + Population: 591106 + - ID: 2342 + Name: Chonju + CountryCode: KOR + District: Chollabuk + Population: 563153 + - ID: 2343 + Name: Chongju + CountryCode: KOR + District: Chungchongbuk + Population: 531376 + - ID: 2344 + Name: Koyang + CountryCode: KOR + District: Kyonggi + Population: 518282 + - ID: 2345 + Name: Ansan + CountryCode: KOR + District: Kyonggi + Population: 510314 + - ID: 2346 + Name: Pohang + CountryCode: KOR + District: Kyongsangbuk + Population: 508899 + - ID: 2347 + Name: Chang-won + CountryCode: KOR + District: Kyongsangnam + Population: 481694 + - ID: 2348 + Name: Masan + CountryCode: KOR + District: Kyongsangnam + Population: 441242 + - ID: 2349 + Name: Kwangmyong + CountryCode: KOR + District: Kyonggi + Population: 350914 + - ID: 2350 + Name: Chonan + CountryCode: KOR + District: Chungchongnam + Population: 330259 + - ID: 2351 + Name: Chinju + CountryCode: KOR + District: Kyongsangnam + Population: 329886 + - ID: 2352 + Name: Iksan + CountryCode: KOR + District: Chollabuk + Population: 322685 + - ID: 2353 + Name: Pyongtaek + CountryCode: KOR + District: Kyonggi + Population: 312927 + - ID: 2354 + Name: Kumi + CountryCode: KOR + District: Kyongsangbuk + Population: 311431 + - ID: 2355 + Name: Uijongbu + CountryCode: KOR + District: Kyonggi + Population: 276111 + - ID: 2356 + Name: Kyongju + CountryCode: KOR + District: Kyongsangbuk + Population: 272968 + - ID: 2357 + Name: Kunsan + CountryCode: KOR + District: Chollabuk + Population: 266569 + - ID: 2358 + Name: Cheju + CountryCode: KOR + District: Cheju + Population: 258511 + - ID: 2359 + Name: Kimhae + CountryCode: KOR + District: Kyongsangnam + Population: 256370 + - ID: 2360 + Name: Sunchon + CountryCode: KOR + District: Chollanam + Population: 249263 + - ID: 2361 + Name: Mokpo + CountryCode: KOR + District: Chollanam + Population: 247452 + - ID: 2362 + Name: Yong-in + CountryCode: KOR + District: Kyonggi + Population: 242643 + - ID: 2363 + Name: Wonju + CountryCode: KOR + District: Kang-won + Population: 237460 + - ID: 2364 + Name: Kunpo + CountryCode: KOR + District: Kyonggi + Population: 235233 + - ID: 2365 + Name: Chunchon + CountryCode: KOR + District: Kang-won + Population: 234528 + - ID: 2366 + Name: Namyangju + CountryCode: KOR + District: Kyonggi + Population: 229060 + - ID: 2367 + Name: Kangnung + CountryCode: KOR + District: Kang-won + Population: 220403 + - ID: 2368 + Name: Chungju + CountryCode: KOR + District: Chungchongbuk + Population: 205206 + - ID: 2369 + Name: Andong + CountryCode: KOR + District: Kyongsangbuk + Population: 188443 + - ID: 2370 + Name: Yosu + CountryCode: KOR + District: Chollanam + Population: 183596 + - ID: 2371 + Name: Kyongsan + CountryCode: KOR + District: Kyongsangbuk + Population: 173746 + - ID: 2372 + Name: Paju + CountryCode: KOR + District: Kyonggi + Population: 163379 + - ID: 2373 + Name: Yangsan + CountryCode: KOR + District: Kyongsangnam + Population: 163351 + - ID: 2374 + Name: Ichon + CountryCode: KOR + District: Kyonggi + Population: 155332 + - ID: 2375 + Name: Asan + CountryCode: KOR + District: Chungchongnam + Population: 154663 + - ID: 2376 + Name: Koje + CountryCode: KOR + District: Kyongsangnam + Population: 147562 + - ID: 2377 + Name: Kimchon + CountryCode: KOR + District: Kyongsangbuk + Population: 147027 + - ID: 2378 + Name: Nonsan + CountryCode: KOR + District: Chungchongnam + Population: 146619 + - ID: 2379 + Name: Kuri + CountryCode: KOR + District: Kyonggi + Population: 142173 + - ID: 2380 + Name: Chong-up + CountryCode: KOR + District: Chollabuk + Population: 139111 + - ID: 2381 + Name: Chechon + CountryCode: KOR + District: Chungchongbuk + Population: 137070 + - ID: 2382 + Name: Sosan + CountryCode: KOR + District: Chungchongnam + Population: 134746 + - ID: 2383 + Name: Shihung + CountryCode: KOR + District: Kyonggi + Population: 133443 + - ID: 2384 + Name: Tong-yong + CountryCode: KOR + District: Kyongsangnam + Population: 131717 + - ID: 2385 + Name: Kongju + CountryCode: KOR + District: Chungchongnam + Population: 131229 + - ID: 2386 + Name: Yongju + CountryCode: KOR + District: Kyongsangbuk + Population: 131097 + - ID: 2387 + Name: Chinhae + CountryCode: KOR + District: Kyongsangnam + Population: 125997 + - ID: 2388 + Name: Sangju + CountryCode: KOR + District: Kyongsangbuk + Population: 124116 + - ID: 2389 + Name: Poryong + CountryCode: KOR + District: Chungchongnam + Population: 122604 + - ID: 2390 + Name: Kwang-yang + CountryCode: KOR + District: Chollanam + Population: 122052 + - ID: 2391 + Name: Miryang + CountryCode: KOR + District: Kyongsangnam + Population: 121501 + - ID: 2392 + Name: Hanam + CountryCode: KOR + District: Kyonggi + Population: 115812 + - ID: 2393 + Name: Kimje + CountryCode: KOR + District: Chollabuk + Population: 115427 + - ID: 2394 + Name: Yongchon + CountryCode: KOR + District: Kyongsangbuk + Population: 113511 + - ID: 2395 + Name: Sachon + CountryCode: KOR + District: Kyongsangnam + Population: 113494 + - ID: 2396 + Name: Uiwang + CountryCode: KOR + District: Kyonggi + Population: 108788 + - ID: 2397 + Name: Naju + CountryCode: KOR + District: Chollanam + Population: 107831 + - ID: 2398 + Name: Namwon + CountryCode: KOR + District: Chollabuk + Population: 103544 + - ID: 2399 + Name: Tonghae + CountryCode: KOR + District: Kang-won + Population: 95472 + - ID: 2400 + Name: Mun-gyong + CountryCode: KOR + District: Kyongsangbuk + Population: 92239 + - ID: 2401 + Name: Athenai + CountryCode: GRC + District: Attika + Population: 772072 + - ID: 2402 + Name: Thessaloniki + CountryCode: GRC + District: Central Macedonia + Population: 383967 + - ID: 2403 + Name: Pireus + CountryCode: GRC + District: Attika + Population: 182671 + - ID: 2404 + Name: Patras + CountryCode: GRC + District: West Greece + Population: 153344 + - ID: 2405 + Name: Peristerion + CountryCode: GRC + District: Attika + Population: 137288 + - ID: 2406 + Name: Herakleion + CountryCode: GRC + District: Crete + Population: 116178 + - ID: 2407 + Name: Kallithea + CountryCode: GRC + District: Attika + Population: 114233 + - ID: 2408 + Name: Larisa + CountryCode: GRC + District: Thessalia + Population: 113090 + - ID: 2409 + Name: Zagreb + CountryCode: HRV + District: Grad Zagreb + Population: 706770 + - ID: 2410 + Name: Split + CountryCode: HRV + District: Split-Dalmatia + Population: 189388 + - ID: 2411 + Name: Rijeka + CountryCode: HRV + District: Primorje-Gorski Kota + Population: 167964 + - ID: 2412 + Name: Osijek + CountryCode: HRV + District: Osijek-Baranja + Population: 104761 + - ID: 2413 + Name: La Habana + CountryCode: CUB + District: La Habana + Population: 2256000 + - ID: 2414 + Name: Santiago de Cuba + CountryCode: CUB + District: Santiago de Cuba + Population: 433180 + - ID: 2415 + Name: Camagüey + CountryCode: CUB + District: Camagüey + Population: 298726 + - ID: 2416 + Name: Holguín + CountryCode: CUB + District: Holguín + Population: 249492 + - ID: 2417 + Name: Santa Clara + CountryCode: CUB + District: Villa Clara + Population: 207350 + - ID: 2418 + Name: Guantánamo + CountryCode: CUB + District: Guantánamo + Population: 205078 + - ID: 2419 + Name: Pinar del Río + CountryCode: CUB + District: Pinar del Río + Population: 142100 + - ID: 2420 + Name: Bayamo + CountryCode: CUB + District: Granma + Population: 141000 + - ID: 2421 + Name: Cienfuegos + CountryCode: CUB + District: Cienfuegos + Population: 132770 + - ID: 2422 + Name: Victoria de las Tunas + CountryCode: CUB + District: Las Tunas + Population: 132350 + - ID: 2423 + Name: Matanzas + CountryCode: CUB + District: Matanzas + Population: 123273 + - ID: 2424 + Name: Manzanillo + CountryCode: CUB + District: Granma + Population: 109350 + - ID: 2425 + Name: Sancti-Spíritus + CountryCode: CUB + District: Sancti-Spíritus + Population: 100751 + - ID: 2426 + Name: Ciego de Ávila + CountryCode: CUB + District: Ciego de Ávila + Population: 98505 + - ID: 2427 + Name: al-Salimiya + CountryCode: KWT + District: Hawalli + Population: 130215 + - ID: 2428 + Name: Jalib al-Shuyukh + CountryCode: KWT + District: Hawalli + Population: 102178 + - ID: 2429 + Name: Kuwait + CountryCode: KWT + District: al-Asima + Population: 28859 + - ID: 2430 + Name: Nicosia + CountryCode: CYP + District: Nicosia + Population: 195000 + - ID: 2431 + Name: Limassol + CountryCode: CYP + District: Limassol + Population: 154400 + - ID: 2432 + Name: Vientiane + CountryCode: LAO + District: Viangchan + Population: 531800 + - ID: 2433 + Name: Savannakhet + CountryCode: LAO + District: Savannakhet + Population: 96652 + - ID: 2434 + Name: Riga + CountryCode: LVA + District: Riika + Population: 764328 + - ID: 2435 + Name: Daugavpils + CountryCode: LVA + District: Daugavpils + Population: 114829 + - ID: 2436 + Name: Liepaja + CountryCode: LVA + District: Liepaja + Population: 89439 + - ID: 2437 + Name: Maseru + CountryCode: LSO + District: Maseru + Population: 297000 + - ID: 2438 + Name: Beirut + CountryCode: LBN + District: Beirut + Population: 1100000 + - ID: 2439 + Name: Tripoli + CountryCode: LBN + District: al-Shamal + Population: 240000 + - ID: 2440 + Name: Monrovia + CountryCode: LBR + District: Montserrado + Population: 850000 + - ID: 2441 + Name: Tripoli + CountryCode: LBY + District: Tripoli + Population: 1682000 + - ID: 2442 + Name: Bengasi + CountryCode: LBY + District: Bengasi + Population: 804000 + - ID: 2443 + Name: Misrata + CountryCode: LBY + District: Misrata + Population: 121669 + - ID: 2444 + Name: al-Zawiya + CountryCode: LBY + District: al-Zawiya + Population: 89338 + - ID: 2445 + Name: Schaan + CountryCode: LIE + District: Schaan + Population: 5346 + - ID: 2446 + Name: Vaduz + CountryCode: LIE + District: Vaduz + Population: 5043 + - ID: 2447 + Name: Vilnius + CountryCode: LTU + District: Vilna + Population: 577969 + - ID: 2448 + Name: Kaunas + CountryCode: LTU + District: Kaunas + Population: 412639 + - ID: 2449 + Name: Klaipeda + CountryCode: LTU + District: Klaipeda + Population: 202451 + - ID: 2450 + Name: Šiauliai + CountryCode: LTU + District: Šiauliai + Population: 146563 + - ID: 2451 + Name: Panevezys + CountryCode: LTU + District: Panevezys + Population: 133695 + - ID: 2452 + Name: Luxembourg [Luxemburg/Lëtzebuerg] + CountryCode: LUX + District: Luxembourg + Population: 80700 + - ID: 2453 + Name: El-Aaiún + CountryCode: ESH + District: El-Aaiún + Population: 169000 + - ID: 2454 + Name: Macao + CountryCode: MAC + District: Macau + Population: 437500 + - ID: 2455 + Name: Antananarivo + CountryCode: MDG + District: Antananarivo + Population: 675669 + - ID: 2456 + Name: Toamasina + CountryCode: MDG + District: Toamasina + Population: 127441 + - ID: 2457 + Name: Antsirabé + CountryCode: MDG + District: Antananarivo + Population: 120239 + - ID: 2458 + Name: Mahajanga + CountryCode: MDG + District: Mahajanga + Population: 100807 + - ID: 2459 + Name: Fianarantsoa + CountryCode: MDG + District: Fianarantsoa + Population: 99005 + - ID: 2460 + Name: Skopje + CountryCode: MKD + District: Skopje + Population: 444299 + - ID: 2461 + Name: Blantyre + CountryCode: MWI + District: Blantyre + Population: 478155 + - ID: 2462 + Name: Lilongwe + CountryCode: MWI + District: Lilongwe + Population: 435964 + - ID: 2463 + Name: Male + CountryCode: MDV + District: Maale + Population: 71000 + - ID: 2464 + Name: Kuala Lumpur + CountryCode: MYS + District: Wilayah Persekutuan + Population: 1297526 + - ID: 2465 + Name: Ipoh + CountryCode: MYS + District: Perak + Population: 382853 + - ID: 2466 + Name: Johor Baharu + CountryCode: MYS + District: Johor + Population: 328436 + - ID: 2467 + Name: Petaling Jaya + CountryCode: MYS + District: Selangor + Population: 254350 + - ID: 2468 + Name: Kelang + CountryCode: MYS + District: Selangor + Population: 243355 + - ID: 2469 + Name: Kuala Terengganu + CountryCode: MYS + District: Terengganu + Population: 228119 + - ID: 2470 + Name: Pinang + CountryCode: MYS + District: Pulau Pinang + Population: 219603 + - ID: 2471 + Name: Kota Bharu + CountryCode: MYS + District: Kelantan + Population: 219582 + - ID: 2472 + Name: Kuantan + CountryCode: MYS + District: Pahang + Population: 199484 + - ID: 2473 + Name: Taiping + CountryCode: MYS + District: Perak + Population: 183261 + - ID: 2474 + Name: Seremban + CountryCode: MYS + District: Negeri Sembilan + Population: 182869 + - ID: 2475 + Name: Kuching + CountryCode: MYS + District: Sarawak + Population: 148059 + - ID: 2476 + Name: Sibu + CountryCode: MYS + District: Sarawak + Population: 126381 + - ID: 2477 + Name: Sandakan + CountryCode: MYS + District: Sabah + Population: 125841 + - ID: 2478 + Name: Alor Setar + CountryCode: MYS + District: Kedah + Population: 124412 + - ID: 2479 + Name: Selayang Baru + CountryCode: MYS + District: Selangor + Population: 124228 + - ID: 2480 + Name: Sungai Petani + CountryCode: MYS + District: Kedah + Population: 114763 + - ID: 2481 + Name: Shah Alam + CountryCode: MYS + District: Selangor + Population: 102019 + - ID: 2482 + Name: Bamako + CountryCode: MLI + District: Bamako + Population: 809552 + - ID: 2483 + Name: Birkirkara + CountryCode: MLT + District: Outer Harbour + Population: 21445 + - ID: 2484 + Name: Valletta + CountryCode: MLT + District: Inner Harbour + Population: 7073 + - ID: 2485 + Name: Casablanca + CountryCode: MAR + District: Casablanca + Population: 2940623 + - ID: 2486 + Name: Rabat + CountryCode: MAR + District: Rabat-Salé-Zammour-Z + Population: 623457 + - ID: 2487 + Name: Marrakech + CountryCode: MAR + District: Marrakech-Tensift-Al + Population: 621914 + - ID: 2488 + Name: Fès + CountryCode: MAR + District: Fès-Boulemane + Population: 541162 + - ID: 2489 + Name: Tanger + CountryCode: MAR + District: Tanger-Tétouan + Population: 521735 + - ID: 2490 + Name: Salé + CountryCode: MAR + District: Rabat-Salé-Zammour-Z + Population: 504420 + - ID: 2491 + Name: Meknès + CountryCode: MAR + District: Meknès-Tafilalet + Population: 460000 + - ID: 2492 + Name: Oujda + CountryCode: MAR + District: Oriental + Population: 365382 + - ID: 2493 + Name: Kénitra + CountryCode: MAR + District: Gharb-Chrarda-Béni H + Population: 292600 + - ID: 2494 + Name: Tétouan + CountryCode: MAR + District: Tanger-Tétouan + Population: 277516 + - ID: 2495 + Name: Safi + CountryCode: MAR + District: Doukkala-Abda + Population: 262300 + - ID: 2496 + Name: Agadir + CountryCode: MAR + District: Souss Massa-Draâ + Population: 155244 + - ID: 2497 + Name: Mohammedia + CountryCode: MAR + District: Casablanca + Population: 154706 + - ID: 2498 + Name: Khouribga + CountryCode: MAR + District: Chaouia-Ouardigha + Population: 152090 + - ID: 2499 + Name: Beni-Mellal + CountryCode: MAR + District: Tadla-Azilal + Population: 140212 + - ID: 2500 + Name: Témara + CountryCode: MAR + District: Rabat-Salé-Zammour-Z + Population: 126303 + - ID: 2501 + Name: El Jadida + CountryCode: MAR + District: Doukkala-Abda + Population: 119083 + - ID: 2502 + Name: Nador + CountryCode: MAR + District: Oriental + Population: 112450 + - ID: 2503 + Name: Ksar el Kebir + CountryCode: MAR + District: Tanger-Tétouan + Population: 107065 + - ID: 2504 + Name: Settat + CountryCode: MAR + District: Chaouia-Ouardigha + Population: 96200 + - ID: 2505 + Name: Taza + CountryCode: MAR + District: Taza-Al Hoceima-Taou + Population: 92700 + - ID: 2506 + Name: El Araich + CountryCode: MAR + District: Tanger-Tétouan + Population: 90400 + - ID: 2507 + Name: Dalap-Uliga-Darrit + CountryCode: MHL + District: Majuro + Population: 28000 + - ID: 2508 + Name: Fort-de-France + CountryCode: MTQ + District: Fort-de-France + Population: 94050 + - ID: 2509 + Name: Nouakchott + CountryCode: MRT + District: Nouakchott + Population: 667300 + - ID: 2510 + Name: Nouâdhibou + CountryCode: MRT + District: Dakhlet Nouâdhibou + Population: 97600 + - ID: 2511 + Name: Port-Louis + CountryCode: MUS + District: Port-Louis + Population: 138200 + - ID: 2512 + Name: Beau Bassin-Rose Hill + CountryCode: MUS + District: Plaines Wilhelms + Population: 100616 + - ID: 2513 + Name: Vacoas-Phoenix + CountryCode: MUS + District: Plaines Wilhelms + Population: 98464 + - ID: 2514 + Name: Mamoutzou + CountryCode: MYT + District: Mamoutzou + Population: 12000 + - ID: 2515 + Name: Ciudad de México + CountryCode: MEX + District: Distrito Federal + Population: 8591309 + - ID: 2516 + Name: Guadalajara + CountryCode: MEX + District: Jalisco + Population: 1647720 + - ID: 2517 + Name: Ecatepec de Morelos + CountryCode: MEX + District: México + Population: 1620303 + - ID: 2518 + Name: Puebla + CountryCode: MEX + District: Puebla + Population: 1346176 + - ID: 2519 + Name: Nezahualcóyotl + CountryCode: MEX + District: México + Population: 1224924 + - ID: 2520 + Name: Juárez + CountryCode: MEX + District: Chihuahua + Population: 1217818 + - ID: 2521 + Name: Tijuana + CountryCode: MEX + District: Baja California + Population: 1212232 + - ID: 2522 + Name: León + CountryCode: MEX + District: Guanajuato + Population: 1133576 + - ID: 2523 + Name: Monterrey + CountryCode: MEX + District: Nuevo León + Population: 1108499 + - ID: 2524 + Name: Zapopan + CountryCode: MEX + District: Jalisco + Population: 1002239 + - ID: 2525 + Name: Naucalpan de Juárez + CountryCode: MEX + District: México + Population: 857511 + - ID: 2526 + Name: Mexicali + CountryCode: MEX + District: Baja California + Population: 764902 + - ID: 2527 + Name: Culiacán + CountryCode: MEX + District: Sinaloa + Population: 744859 + - ID: 2528 + Name: Acapulco de Juárez + CountryCode: MEX + District: Guerrero + Population: 721011 + - ID: 2529 + Name: Tlalnepantla de Baz + CountryCode: MEX + District: México + Population: 720755 + - ID: 2530 + Name: Mérida + CountryCode: MEX + District: Yucatán + Population: 703324 + - ID: 2531 + Name: Chihuahua + CountryCode: MEX + District: Chihuahua + Population: 670208 + - ID: 2532 + Name: San Luis Potosí + CountryCode: MEX + District: San Luis Potosí + Population: 669353 + - ID: 2533 + Name: Guadalupe + CountryCode: MEX + District: Nuevo León + Population: 668780 + - ID: 2534 + Name: Toluca + CountryCode: MEX + District: México + Population: 665617 + - ID: 2535 + Name: Aguascalientes + CountryCode: MEX + District: Aguascalientes + Population: 643360 + - ID: 2536 + Name: Querétaro + CountryCode: MEX + District: Querétaro de Arteaga + Population: 639839 + - ID: 2537 + Name: Morelia + CountryCode: MEX + District: Michoacán de Ocampo + Population: 619958 + - ID: 2538 + Name: Hermosillo + CountryCode: MEX + District: Sonora + Population: 608697 + - ID: 2539 + Name: Saltillo + CountryCode: MEX + District: Coahuila de Zaragoza + Population: 577352 + - ID: 2540 + Name: Torreón + CountryCode: MEX + District: Coahuila de Zaragoza + Population: 529093 + - ID: 2541 + Name: Centro (Villahermosa) + CountryCode: MEX + District: Tabasco + Population: 519873 + - ID: 2542 + Name: San Nicolás de los Garza + CountryCode: MEX + District: Nuevo León + Population: 495540 + - ID: 2543 + Name: Durango + CountryCode: MEX + District: Durango + Population: 490524 + - ID: 2544 + Name: Chimalhuacán + CountryCode: MEX + District: México + Population: 490245 + - ID: 2545 + Name: Tlaquepaque + CountryCode: MEX + District: Jalisco + Population: 475472 + - ID: 2546 + Name: Atizapán de Zaragoza + CountryCode: MEX + District: México + Population: 467262 + - ID: 2547 + Name: Veracruz + CountryCode: MEX + District: Veracruz + Population: 457119 + - ID: 2548 + Name: Cuautitlán Izcalli + CountryCode: MEX + District: México + Population: 452976 + - ID: 2549 + Name: Irapuato + CountryCode: MEX + District: Guanajuato + Population: 440039 + - ID: 2550 + Name: Tuxtla Gutiérrez + CountryCode: MEX + District: Chiapas + Population: 433544 + - ID: 2551 + Name: Tultitlán + CountryCode: MEX + District: México + Population: 432411 + - ID: 2552 + Name: Reynosa + CountryCode: MEX + District: Tamaulipas + Population: 419776 + - ID: 2553 + Name: Benito Juárez + CountryCode: MEX + District: Quintana Roo + Population: 419276 + - ID: 2554 + Name: Matamoros + CountryCode: MEX + District: Tamaulipas + Population: 416428 + - ID: 2555 + Name: Xalapa + CountryCode: MEX + District: Veracruz + Population: 390058 + - ID: 2556 + Name: Celaya + CountryCode: MEX + District: Guanajuato + Population: 382140 + - ID: 2557 + Name: Mazatlán + CountryCode: MEX + District: Sinaloa + Population: 380265 + - ID: 2558 + Name: Ensenada + CountryCode: MEX + District: Baja California + Population: 369573 + - ID: 2559 + Name: Ahome + CountryCode: MEX + District: Sinaloa + Population: 358663 + - ID: 2560 + Name: Cajeme + CountryCode: MEX + District: Sonora + Population: 355679 + - ID: 2561 + Name: Cuernavaca + CountryCode: MEX + District: Morelos + Population: 337966 + - ID: 2562 + Name: Tonalá + CountryCode: MEX + District: Jalisco + Population: 336109 + - ID: 2563 + Name: Valle de Chalco Solidaridad + CountryCode: MEX + District: México + Population: 323113 + - ID: 2564 + Name: Nuevo Laredo + CountryCode: MEX + District: Tamaulipas + Population: 310277 + - ID: 2565 + Name: Tepic + CountryCode: MEX + District: Nayarit + Population: 305025 + - ID: 2566 + Name: Tampico + CountryCode: MEX + District: Tamaulipas + Population: 294789 + - ID: 2567 + Name: Ixtapaluca + CountryCode: MEX + District: México + Population: 293160 + - ID: 2568 + Name: Apodaca + CountryCode: MEX + District: Nuevo León + Population: 282941 + - ID: 2569 + Name: Guasave + CountryCode: MEX + District: Sinaloa + Population: 277201 + - ID: 2570 + Name: Gómez Palacio + CountryCode: MEX + District: Durango + Population: 272806 + - ID: 2571 + Name: Tapachula + CountryCode: MEX + District: Chiapas + Population: 271141 + - ID: 2572 + Name: Nicolás Romero + CountryCode: MEX + District: México + Population: 269393 + - ID: 2573 + Name: Coatzacoalcos + CountryCode: MEX + District: Veracruz + Population: 267037 + - ID: 2574 + Name: Uruapan + CountryCode: MEX + District: Michoacán de Ocampo + Population: 265211 + - ID: 2575 + Name: Victoria + CountryCode: MEX + District: Tamaulipas + Population: 262686 + - ID: 2576 + Name: Oaxaca de Juárez + CountryCode: MEX + District: Oaxaca + Population: 256848 + - ID: 2577 + Name: Coacalco de Berriozábal + CountryCode: MEX + District: México + Population: 252270 + - ID: 2578 + Name: Pachuca de Soto + CountryCode: MEX + District: Hidalgo + Population: 244688 + - ID: 2579 + Name: General Escobedo + CountryCode: MEX + District: Nuevo León + Population: 232961 + - ID: 2580 + Name: Salamanca + CountryCode: MEX + District: Guanajuato + Population: 226864 + - ID: 2581 + Name: Santa Catarina + CountryCode: MEX + District: Nuevo León + Population: 226573 + - ID: 2582 + Name: Tehuacán + CountryCode: MEX + District: Puebla + Population: 225943 + - ID: 2583 + Name: Chalco + CountryCode: MEX + District: México + Population: 222201 + - ID: 2584 + Name: Cárdenas + CountryCode: MEX + District: Tabasco + Population: 216903 + - ID: 2585 + Name: Campeche + CountryCode: MEX + District: Campeche + Population: 216735 + - ID: 2586 + Name: La Paz + CountryCode: MEX + District: México + Population: 213045 + - ID: 2587 + Name: Othón P. Blanco (Chetumal) + CountryCode: MEX + District: Quintana Roo + Population: 208014 + - ID: 2588 + Name: Texcoco + CountryCode: MEX + District: México + Population: 203681 + - ID: 2589 + Name: La Paz + CountryCode: MEX + District: Baja California Sur + Population: 196708 + - ID: 2590 + Name: Metepec + CountryCode: MEX + District: México + Population: 194265 + - ID: 2591 + Name: Monclova + CountryCode: MEX + District: Coahuila de Zaragoza + Population: 193657 + - ID: 2592 + Name: Huixquilucan + CountryCode: MEX + District: México + Population: 193156 + - ID: 2593 + Name: Chilpancingo de los Bravo + CountryCode: MEX + District: Guerrero + Population: 192509 + - ID: 2594 + Name: Puerto Vallarta + CountryCode: MEX + District: Jalisco + Population: 183741 + - ID: 2595 + Name: Fresnillo + CountryCode: MEX + District: Zacatecas + Population: 182744 + - ID: 2596 + Name: Ciudad Madero + CountryCode: MEX + District: Tamaulipas + Population: 182012 + - ID: 2597 + Name: Soledad de Graciano Sánchez + CountryCode: MEX + District: San Luis Potosí + Population: 179956 + - ID: 2598 + Name: San Juan del Río + CountryCode: MEX + District: Querétaro + Population: 179300 + - ID: 2599 + Name: San Felipe del Progreso + CountryCode: MEX + District: México + Population: 177330 + - ID: 2600 + Name: Córdoba + CountryCode: MEX + District: Veracruz + Population: 176952 + - ID: 2601 + Name: Tecámac + CountryCode: MEX + District: México + Population: 172410 + - ID: 2602 + Name: Ocosingo + CountryCode: MEX + District: Chiapas + Population: 171495 + - ID: 2603 + Name: Carmen + CountryCode: MEX + District: Campeche + Population: 171367 + - ID: 2604 + Name: Lázaro Cárdenas + CountryCode: MEX + District: Michoacán de Ocampo + Population: 170878 + - ID: 2605 + Name: Jiutepec + CountryCode: MEX + District: Morelos + Population: 170428 + - ID: 2606 + Name: Papantla + CountryCode: MEX + District: Veracruz + Population: 170123 + - ID: 2607 + Name: Comalcalco + CountryCode: MEX + District: Tabasco + Population: 164640 + - ID: 2608 + Name: Zamora + CountryCode: MEX + District: Michoacán de Ocampo + Population: 161191 + - ID: 2609 + Name: Nogales + CountryCode: MEX + District: Sonora + Population: 159103 + - ID: 2610 + Name: Huimanguillo + CountryCode: MEX + District: Tabasco + Population: 158335 + - ID: 2611 + Name: Cuautla + CountryCode: MEX + District: Morelos + Population: 153132 + - ID: 2612 + Name: Minatitlán + CountryCode: MEX + District: Veracruz + Population: 152983 + - ID: 2613 + Name: Poza Rica de Hidalgo + CountryCode: MEX + District: Veracruz + Population: 152678 + - ID: 2614 + Name: Ciudad Valles + CountryCode: MEX + District: San Luis Potosí + Population: 146411 + - ID: 2615 + Name: Navolato + CountryCode: MEX + District: Sinaloa + Population: 145396 + - ID: 2616 + Name: San Luis Río Colorado + CountryCode: MEX + District: Sonora + Population: 145276 + - ID: 2617 + Name: Pénjamo + CountryCode: MEX + District: Guanajuato + Population: 143927 + - ID: 2618 + Name: San Andrés Tuxtla + CountryCode: MEX + District: Veracruz + Population: 142251 + - ID: 2619 + Name: Guanajuato + CountryCode: MEX + District: Guanajuato + Population: 141215 + - ID: 2620 + Name: Navojoa + CountryCode: MEX + District: Sonora + Population: 140495 + - ID: 2621 + Name: Zitácuaro + CountryCode: MEX + District: Michoacán de Ocampo + Population: 137970 + - ID: 2622 + Name: Boca del Río + CountryCode: MEX + District: Veracruz-Llave + Population: 135721 + - ID: 2623 + Name: Allende + CountryCode: MEX + District: Guanajuato + Population: 134645 + - ID: 2624 + Name: Silao + CountryCode: MEX + District: Guanajuato + Population: 134037 + - ID: 2625 + Name: Macuspana + CountryCode: MEX + District: Tabasco + Population: 133795 + - ID: 2626 + Name: San Juan Bautista Tuxtepec + CountryCode: MEX + District: Oaxaca + Population: 133675 + - ID: 2627 + Name: San Cristóbal de las Casas + CountryCode: MEX + District: Chiapas + Population: 132317 + - ID: 2628 + Name: Valle de Santiago + CountryCode: MEX + District: Guanajuato + Population: 130557 + - ID: 2629 + Name: Guaymas + CountryCode: MEX + District: Sonora + Population: 130108 + - ID: 2630 + Name: Colima + CountryCode: MEX + District: Colima + Population: 129454 + - ID: 2631 + Name: Dolores Hidalgo + CountryCode: MEX + District: Guanajuato + Population: 128675 + - ID: 2632 + Name: Lagos de Moreno + CountryCode: MEX + District: Jalisco + Population: 127949 + - ID: 2633 + Name: Piedras Negras + CountryCode: MEX + District: Coahuila de Zaragoza + Population: 127898 + - ID: 2634 + Name: Altamira + CountryCode: MEX + District: Tamaulipas + Population: 127490 + - ID: 2635 + Name: Túxpam + CountryCode: MEX + District: Veracruz + Population: 126475 + - ID: 2636 + Name: San Pedro Garza García + CountryCode: MEX + District: Nuevo León + Population: 126147 + - ID: 2637 + Name: Cuauhtémoc + CountryCode: MEX + District: Chihuahua + Population: 124279 + - ID: 2638 + Name: Manzanillo + CountryCode: MEX + District: Colima + Population: 124014 + - ID: 2639 + Name: Iguala de la Independencia + CountryCode: MEX + District: Guerrero + Population: 123883 + - ID: 2640 + Name: Zacatecas + CountryCode: MEX + District: Zacatecas + Population: 123700 + - ID: 2641 + Name: Tlajomulco de Zúñiga + CountryCode: MEX + District: Jalisco + Population: 123220 + - ID: 2642 + Name: Tulancingo de Bravo + CountryCode: MEX + District: Hidalgo + Population: 121946 + - ID: 2643 + Name: Zinacantepec + CountryCode: MEX + District: México + Population: 121715 + - ID: 2644 + Name: San Martín Texmelucan + CountryCode: MEX + District: Puebla + Population: 121093 + - ID: 2645 + Name: Tepatitlán de Morelos + CountryCode: MEX + District: Jalisco + Population: 118948 + - ID: 2646 + Name: Martínez de la Torre + CountryCode: MEX + District: Veracruz + Population: 118815 + - ID: 2647 + Name: Orizaba + CountryCode: MEX + District: Veracruz + Population: 118488 + - ID: 2648 + Name: Apatzingán + CountryCode: MEX + District: Michoacán de Ocampo + Population: 117849 + - ID: 2649 + Name: Atlixco + CountryCode: MEX + District: Puebla + Population: 117019 + - ID: 2650 + Name: Delicias + CountryCode: MEX + District: Chihuahua + Population: 116132 + - ID: 2651 + Name: Ixtlahuaca + CountryCode: MEX + District: México + Population: 115548 + - ID: 2652 + Name: El Mante + CountryCode: MEX + District: Tamaulipas + Population: 112453 + - ID: 2653 + Name: Lerdo + CountryCode: MEX + District: Durango + Population: 112272 + - ID: 2654 + Name: Almoloya de Juárez + CountryCode: MEX + District: México + Population: 110550 + - ID: 2655 + Name: Acámbaro + CountryCode: MEX + District: Guanajuato + Population: 110487 + - ID: 2656 + Name: Acuña + CountryCode: MEX + District: Coahuila de Zaragoza + Population: 110388 + - ID: 2657 + Name: Guadalupe + CountryCode: MEX + District: Zacatecas + Population: 108881 + - ID: 2658 + Name: Huejutla de Reyes + CountryCode: MEX + District: Hidalgo + Population: 108017 + - ID: 2659 + Name: Hidalgo + CountryCode: MEX + District: Michoacán de Ocampo + Population: 106198 + - ID: 2660 + Name: Los Cabos + CountryCode: MEX + District: Baja California Sur + Population: 105199 + - ID: 2661 + Name: Comitán de Domínguez + CountryCode: MEX + District: Chiapas + Population: 104986 + - ID: 2662 + Name: Cunduacán + CountryCode: MEX + District: Tabasco + Population: 104164 + - ID: 2663 + Name: Río Bravo + CountryCode: MEX + District: Tamaulipas + Population: 103901 + - ID: 2664 + Name: Temapache + CountryCode: MEX + District: Veracruz + Population: 102824 + - ID: 2665 + Name: Chilapa de Alvarez + CountryCode: MEX + District: Guerrero + Population: 102716 + - ID: 2666 + Name: Hidalgo del Parral + CountryCode: MEX + District: Chihuahua + Population: 100881 + - ID: 2667 + Name: San Francisco del Rincón + CountryCode: MEX + District: Guanajuato + Population: 100149 + - ID: 2668 + Name: Taxco de Alarcón + CountryCode: MEX + District: Guerrero + Population: 99907 + - ID: 2669 + Name: Zumpango + CountryCode: MEX + District: México + Population: 99781 + - ID: 2670 + Name: San Pedro Cholula + CountryCode: MEX + District: Puebla + Population: 99734 + - ID: 2671 + Name: Lerma + CountryCode: MEX + District: México + Population: 99714 + - ID: 2672 + Name: Tecomán + CountryCode: MEX + District: Colima + Population: 99296 + - ID: 2673 + Name: Las Margaritas + CountryCode: MEX + District: Chiapas + Population: 97389 + - ID: 2674 + Name: Cosoleacaque + CountryCode: MEX + District: Veracruz + Population: 97199 + - ID: 2675 + Name: San Luis de la Paz + CountryCode: MEX + District: Guanajuato + Population: 96763 + - ID: 2676 + Name: José Azueta + CountryCode: MEX + District: Guerrero + Population: 95448 + - ID: 2677 + Name: Santiago Ixcuintla + CountryCode: MEX + District: Nayarit + Population: 95311 + - ID: 2678 + Name: San Felipe + CountryCode: MEX + District: Guanajuato + Population: 95305 + - ID: 2679 + Name: Tejupilco + CountryCode: MEX + District: México + Population: 94934 + - ID: 2680 + Name: Tantoyuca + CountryCode: MEX + District: Veracruz + Population: 94709 + - ID: 2681 + Name: Salvatierra + CountryCode: MEX + District: Guanajuato + Population: 94322 + - ID: 2682 + Name: Tultepec + CountryCode: MEX + District: México + Population: 93364 + - ID: 2683 + Name: Temixco + CountryCode: MEX + District: Morelos + Population: 92686 + - ID: 2684 + Name: Matamoros + CountryCode: MEX + District: Coahuila de Zaragoza + Population: 91858 + - ID: 2685 + Name: Pánuco + CountryCode: MEX + District: Veracruz + Population: 90551 + - ID: 2686 + Name: El Fuerte + CountryCode: MEX + District: Sinaloa + Population: 89556 + - ID: 2687 + Name: Tierra Blanca + CountryCode: MEX + District: Veracruz + Population: 89143 + - ID: 2688 + Name: Weno + CountryCode: FSM + District: Chuuk + Population: 22000 + - ID: 2689 + Name: Palikir + CountryCode: FSM + District: Pohnpei + Population: 8600 + - ID: 2690 + Name: Chisinau + CountryCode: MDA + District: Chisinau + Population: 719900 + - ID: 2691 + Name: Tiraspol + CountryCode: MDA + District: Dnjestria + Population: 194300 + - ID: 2692 + Name: Balti + CountryCode: MDA + District: Balti + Population: 153400 + - ID: 2693 + Name: Bender (Tîghina) + CountryCode: MDA + District: Bender (Tîghina) + Population: 125700 + - ID: 2694 + Name: Monte-Carlo + CountryCode: MCO + District: – + Population: 13154 + - ID: 2695 + Name: Monaco-Ville + CountryCode: MCO + District: – + Population: 1234 + - ID: 2696 + Name: Ulan Bator + CountryCode: MNG + District: Ulaanbaatar + Population: 773700 + - ID: 2697 + Name: Plymouth + CountryCode: MSR + District: Plymouth + Population: 2000 + - ID: 2698 + Name: Maputo + CountryCode: MOZ + District: Maputo + Population: 1018938 + - ID: 2699 + Name: Matola + CountryCode: MOZ + District: Maputo + Population: 424662 + - ID: 2700 + Name: Beira + CountryCode: MOZ + District: Sofala + Population: 397368 + - ID: 2701 + Name: Nampula + CountryCode: MOZ + District: Nampula + Population: 303346 + - ID: 2702 + Name: Chimoio + CountryCode: MOZ + District: Manica + Population: 171056 + - ID: 2703 + Name: Naçala-Porto + CountryCode: MOZ + District: Nampula + Population: 158248 + - ID: 2704 + Name: Quelimane + CountryCode: MOZ + District: Zambézia + Population: 150116 + - ID: 2705 + Name: Mocuba + CountryCode: MOZ + District: Zambézia + Population: 124700 + - ID: 2706 + Name: Tete + CountryCode: MOZ + District: Tete + Population: 101984 + - ID: 2707 + Name: Xai-Xai + CountryCode: MOZ + District: Gaza + Population: 99442 + - ID: 2708 + Name: Gurue + CountryCode: MOZ + District: Zambézia + Population: 99300 + - ID: 2709 + Name: Maxixe + CountryCode: MOZ + District: Inhambane + Population: 93985 + - ID: 2710 + Name: Rangoon (Yangon) + CountryCode: MMR + District: Rangoon [Yangon] + Population: 3361700 + - ID: 2711 + Name: Mandalay + CountryCode: MMR + District: Mandalay + Population: 885300 + - ID: 2712 + Name: Moulmein (Mawlamyine) + CountryCode: MMR + District: Mon + Population: 307900 + - ID: 2713 + Name: Pegu (Bago) + CountryCode: MMR + District: Pegu [Bago] + Population: 190900 + - ID: 2714 + Name: Bassein (Pathein) + CountryCode: MMR + District: Irrawaddy [Ayeyarwad + Population: 183900 + - ID: 2715 + Name: Monywa + CountryCode: MMR + District: Sagaing + Population: 138600 + - ID: 2716 + Name: Sittwe (Akyab) + CountryCode: MMR + District: Rakhine + Population: 137600 + - ID: 2717 + Name: Taunggyi (Taunggye) + CountryCode: MMR + District: Shan + Population: 131500 + - ID: 2718 + Name: Meikhtila + CountryCode: MMR + District: Mandalay + Population: 129700 + - ID: 2719 + Name: Mergui (Myeik) + CountryCode: MMR + District: Tenasserim [Tanintha + Population: 122700 + - ID: 2720 + Name: Lashio (Lasho) + CountryCode: MMR + District: Shan + Population: 107600 + - ID: 2721 + Name: Prome (Pyay) + CountryCode: MMR + District: Pegu [Bago] + Population: 105700 + - ID: 2722 + Name: Henzada (Hinthada) + CountryCode: MMR + District: Irrawaddy [Ayeyarwad + Population: 104700 + - ID: 2723 + Name: Myingyan + CountryCode: MMR + District: Mandalay + Population: 103600 + - ID: 2724 + Name: Tavoy (Dawei) + CountryCode: MMR + District: Tenasserim [Tanintha + Population: 96800 + - ID: 2725 + Name: Pagakku (Pakokku) + CountryCode: MMR + District: Magwe [Magway] + Population: 94800 + - ID: 2726 + Name: Windhoek + CountryCode: NAM + District: Khomas + Population: 169000 + - ID: 2727 + Name: Yangor + CountryCode: NRU + District: – + Population: 4050 + - ID: 2728 + Name: Yaren + CountryCode: NRU + District: – + Population: 559 + - ID: 2729 + Name: Kathmandu + CountryCode: NPL + District: Central + Population: 591835 + - ID: 2730 + Name: Biratnagar + CountryCode: NPL + District: Eastern + Population: 157764 + - ID: 2731 + Name: Pokhara + CountryCode: NPL + District: Western + Population: 146318 + - ID: 2732 + Name: Lalitapur + CountryCode: NPL + District: Central + Population: 145847 + - ID: 2733 + Name: Birgunj + CountryCode: NPL + District: Central + Population: 90639 + - ID: 2734 + Name: Managua + CountryCode: NIC + District: Managua + Population: 959000 + - ID: 2735 + Name: León + CountryCode: NIC + District: León + Population: 123865 + - ID: 2736 + Name: Chinandega + CountryCode: NIC + District: Chinandega + Population: 97387 + - ID: 2737 + Name: Masaya + CountryCode: NIC + District: Masaya + Population: 88971 + - ID: 2738 + Name: Niamey + CountryCode: NER + District: Niamey + Population: 420000 + - ID: 2739 + Name: Zinder + CountryCode: NER + District: Zinder + Population: 120892 + - ID: 2740 + Name: Maradi + CountryCode: NER + District: Maradi + Population: 112965 + - ID: 2741 + Name: Lagos + CountryCode: NGA + District: Lagos + Population: 1518000 + - ID: 2742 + Name: Ibadan + CountryCode: NGA + District: Oyo & Osun + Population: 1432000 + - ID: 2743 + Name: Ogbomosho + CountryCode: NGA + District: Oyo & Osun + Population: 730000 + - ID: 2744 + Name: Kano + CountryCode: NGA + District: Kano & Jigawa + Population: 674100 + - ID: 2745 + Name: Oshogbo + CountryCode: NGA + District: Oyo & Osun + Population: 476800 + - ID: 2746 + Name: Ilorin + CountryCode: NGA + District: Kwara & Kogi + Population: 475800 + - ID: 2747 + Name: Abeokuta + CountryCode: NGA + District: Ogun + Population: 427400 + - ID: 2748 + Name: Port Harcourt + CountryCode: NGA + District: Rivers & Bayelsa + Population: 410000 + - ID: 2749 + Name: Zaria + CountryCode: NGA + District: Kaduna + Population: 379200 + - ID: 2750 + Name: Ilesha + CountryCode: NGA + District: Oyo & Osun + Population: 378400 + - ID: 2751 + Name: Onitsha + CountryCode: NGA + District: Anambra & Enugu & Eb + Population: 371900 + - ID: 2752 + Name: Iwo + CountryCode: NGA + District: Oyo & Osun + Population: 362000 + - ID: 2753 + Name: Ado-Ekiti + CountryCode: NGA + District: Ondo & Ekiti + Population: 359400 + - ID: 2754 + Name: Abuja + CountryCode: NGA + District: Federal Capital Dist + Population: 350100 + - ID: 2755 + Name: Kaduna + CountryCode: NGA + District: Kaduna + Population: 342200 + - ID: 2756 + Name: Mushin + CountryCode: NGA + District: Lagos + Population: 333200 + - ID: 2757 + Name: Maiduguri + CountryCode: NGA + District: Borno & Yobe + Population: 320000 + - ID: 2758 + Name: Enugu + CountryCode: NGA + District: Anambra & Enugu & Eb + Population: 316100 + - ID: 2759 + Name: Ede + CountryCode: NGA + District: Oyo & Osun + Population: 307100 + - ID: 2760 + Name: Aba + CountryCode: NGA + District: Imo & Abia + Population: 298900 + - ID: 2761 + Name: Ife + CountryCode: NGA + District: Oyo & Osun + Population: 296800 + - ID: 2762 + Name: Ila + CountryCode: NGA + District: Oyo & Osun + Population: 264000 + - ID: 2763 + Name: Oyo + CountryCode: NGA + District: Oyo & Osun + Population: 256400 + - ID: 2764 + Name: Ikerre + CountryCode: NGA + District: Ondo & Ekiti + Population: 244600 + - ID: 2765 + Name: Benin City + CountryCode: NGA + District: Edo & Delta + Population: 229400 + - ID: 2766 + Name: Iseyin + CountryCode: NGA + District: Oyo & Osun + Population: 217300 + - ID: 2767 + Name: Katsina + CountryCode: NGA + District: Katsina + Population: 206500 + - ID: 2768 + Name: Jos + CountryCode: NGA + District: Plateau & Nassarawa + Population: 206300 + - ID: 2769 + Name: Sokoto + CountryCode: NGA + District: Sokoto & Kebbi & Zam + Population: 204900 + - ID: 2770 + Name: Ilobu + CountryCode: NGA + District: Oyo & Osun + Population: 199000 + - ID: 2771 + Name: Offa + CountryCode: NGA + District: Kwara & Kogi + Population: 197200 + - ID: 2772 + Name: Ikorodu + CountryCode: NGA + District: Lagos + Population: 184900 + - ID: 2773 + Name: Ilawe-Ekiti + CountryCode: NGA + District: Ondo & Ekiti + Population: 184500 + - ID: 2774 + Name: Owo + CountryCode: NGA + District: Ondo & Ekiti + Population: 183500 + - ID: 2775 + Name: Ikirun + CountryCode: NGA + District: Oyo & Osun + Population: 181400 + - ID: 2776 + Name: Shaki + CountryCode: NGA + District: Oyo & Osun + Population: 174500 + - ID: 2777 + Name: Calabar + CountryCode: NGA + District: Cross River + Population: 174400 + - ID: 2778 + Name: Ondo + CountryCode: NGA + District: Ondo & Ekiti + Population: 173600 + - ID: 2779 + Name: Akure + CountryCode: NGA + District: Ondo & Ekiti + Population: 162300 + - ID: 2780 + Name: Gusau + CountryCode: NGA + District: Sokoto & Kebbi & Zam + Population: 158000 + - ID: 2781 + Name: Ijebu-Ode + CountryCode: NGA + District: Ogun + Population: 156400 + - ID: 2782 + Name: Effon-Alaiye + CountryCode: NGA + District: Oyo & Osun + Population: 153100 + - ID: 2783 + Name: Kumo + CountryCode: NGA + District: Bauchi & Gombe + Population: 148000 + - ID: 2784 + Name: Shomolu + CountryCode: NGA + District: Lagos + Population: 147700 + - ID: 2785 + Name: Oka-Akoko + CountryCode: NGA + District: Ondo & Ekiti + Population: 142900 + - ID: 2786 + Name: Ikare + CountryCode: NGA + District: Ondo & Ekiti + Population: 140800 + - ID: 2787 + Name: Sapele + CountryCode: NGA + District: Edo & Delta + Population: 139200 + - ID: 2788 + Name: Deba Habe + CountryCode: NGA + District: Bauchi & Gombe + Population: 138600 + - ID: 2789 + Name: Minna + CountryCode: NGA + District: Niger + Population: 136900 + - ID: 2790 + Name: Warri + CountryCode: NGA + District: Edo & Delta + Population: 126100 + - ID: 2791 + Name: Bida + CountryCode: NGA + District: Niger + Population: 125500 + - ID: 2792 + Name: Ikire + CountryCode: NGA + District: Oyo & Osun + Population: 123300 + - ID: 2793 + Name: Makurdi + CountryCode: NGA + District: Benue + Population: 123100 + - ID: 2794 + Name: Lafia + CountryCode: NGA + District: Plateau & Nassarawa + Population: 122500 + - ID: 2795 + Name: Inisa + CountryCode: NGA + District: Oyo & Osun + Population: 119800 + - ID: 2796 + Name: Shagamu + CountryCode: NGA + District: Ogun + Population: 117200 + - ID: 2797 + Name: Awka + CountryCode: NGA + District: Anambra & Enugu & Eb + Population: 111200 + - ID: 2798 + Name: Gombe + CountryCode: NGA + District: Bauchi & Gombe + Population: 107800 + - ID: 2799 + Name: Igboho + CountryCode: NGA + District: Oyo & Osun + Population: 106800 + - ID: 2800 + Name: Ejigbo + CountryCode: NGA + District: Oyo & Osun + Population: 105900 + - ID: 2801 + Name: Agege + CountryCode: NGA + District: Lagos + Population: 105000 + - ID: 2802 + Name: Ise-Ekiti + CountryCode: NGA + District: Ondo & Ekiti + Population: 103400 + - ID: 2803 + Name: Ugep + CountryCode: NGA + District: Cross River + Population: 102600 + - ID: 2804 + Name: Epe + CountryCode: NGA + District: Lagos + Population: 101000 + - ID: 2805 + Name: Alofi + CountryCode: NIU + District: – + Population: 682 + - ID: 2806 + Name: Kingston + CountryCode: NFK + District: – + Population: 800 + - ID: 2807 + Name: Oslo + CountryCode: NOR + District: Oslo + Population: 508726 + - ID: 2808 + Name: Bergen + CountryCode: NOR + District: Hordaland + Population: 230948 + - ID: 2809 + Name: Trondheim + CountryCode: NOR + District: Sør-Trøndelag + Population: 150166 + - ID: 2810 + Name: Stavanger + CountryCode: NOR + District: Rogaland + Population: 108848 + - ID: 2811 + Name: Bærum + CountryCode: NOR + District: Akershus + Population: 101340 + - ID: 2812 + Name: Abidjan + CountryCode: CIV + District: Abidjan + Population: 2500000 + - ID: 2813 + Name: Bouaké + CountryCode: CIV + District: Bouaké + Population: 329850 + - ID: 2814 + Name: Yamoussoukro + CountryCode: CIV + District: Yamoussoukro + Population: 130000 + - ID: 2815 + Name: Daloa + CountryCode: CIV + District: Daloa + Population: 121842 + - ID: 2816 + Name: Korhogo + CountryCode: CIV + District: Korhogo + Population: 109445 + - ID: 2817 + Name: al-Sib + CountryCode: OMN + District: Masqat + Population: 155000 + - ID: 2818 + Name: Salala + CountryCode: OMN + District: Zufar + Population: 131813 + - ID: 2819 + Name: Bawshar + CountryCode: OMN + District: Masqat + Population: 107500 + - ID: 2820 + Name: Suhar + CountryCode: OMN + District: al-Batina + Population: 90814 + - ID: 2821 + Name: Masqat + CountryCode: OMN + District: Masqat + Population: 51969 + - ID: 2822 + Name: Karachi + CountryCode: PAK + District: Sindh + Population: 9269265 + - ID: 2823 + Name: Lahore + CountryCode: PAK + District: Punjab + Population: 5063499 + - ID: 2824 + Name: Faisalabad + CountryCode: PAK + District: Punjab + Population: 1977246 + - ID: 2825 + Name: Rawalpindi + CountryCode: PAK + District: Punjab + Population: 1406214 + - ID: 2826 + Name: Multan + CountryCode: PAK + District: Punjab + Population: 1182441 + - ID: 2827 + Name: Hyderabad + CountryCode: PAK + District: Sindh + Population: 1151274 + - ID: 2828 + Name: Gujranwala + CountryCode: PAK + District: Punjab + Population: 1124749 + - ID: 2829 + Name: Peshawar + CountryCode: PAK + District: Nothwest Border Prov + Population: 988005 + - ID: 2830 + Name: Quetta + CountryCode: PAK + District: Baluchistan + Population: 560307 + - ID: 2831 + Name: Islamabad + CountryCode: PAK + District: Islamabad + Population: 524500 + - ID: 2832 + Name: Sargodha + CountryCode: PAK + District: Punjab + Population: 455360 + - ID: 2833 + Name: Sialkot + CountryCode: PAK + District: Punjab + Population: 417597 + - ID: 2834 + Name: Bahawalpur + CountryCode: PAK + District: Punjab + Population: 403408 + - ID: 2835 + Name: Sukkur + CountryCode: PAK + District: Sindh + Population: 329176 + - ID: 2836 + Name: Jhang + CountryCode: PAK + District: Punjab + Population: 292214 + - ID: 2837 + Name: Sheikhupura + CountryCode: PAK + District: Punjab + Population: 271875 + - ID: 2838 + Name: Larkana + CountryCode: PAK + District: Sindh + Population: 270366 + - ID: 2839 + Name: Gujrat + CountryCode: PAK + District: Punjab + Population: 250121 + - ID: 2840 + Name: Mardan + CountryCode: PAK + District: Nothwest Border Prov + Population: 244511 + - ID: 2841 + Name: Kasur + CountryCode: PAK + District: Punjab + Population: 241649 + - ID: 2842 + Name: Rahim Yar Khan + CountryCode: PAK + District: Punjab + Population: 228479 + - ID: 2843 + Name: Sahiwal + CountryCode: PAK + District: Punjab + Population: 207388 + - ID: 2844 + Name: Okara + CountryCode: PAK + District: Punjab + Population: 200901 + - ID: 2845 + Name: Wah + CountryCode: PAK + District: Punjab + Population: 198400 + - ID: 2846 + Name: Dera Ghazi Khan + CountryCode: PAK + District: Punjab + Population: 188100 + - ID: 2847 + Name: Mirpur Khas + CountryCode: PAK + District: Sind + Population: 184500 + - ID: 2848 + Name: Nawabshah + CountryCode: PAK + District: Sind + Population: 183100 + - ID: 2849 + Name: Mingora + CountryCode: PAK + District: Nothwest Border Prov + Population: 174500 + - ID: 2850 + Name: Chiniot + CountryCode: PAK + District: Punjab + Population: 169300 + - ID: 2851 + Name: Kamoke + CountryCode: PAK + District: Punjab + Population: 151000 + - ID: 2852 + Name: Mandi Burewala + CountryCode: PAK + District: Punjab + Population: 149900 + - ID: 2853 + Name: Jhelum + CountryCode: PAK + District: Punjab + Population: 145800 + - ID: 2854 + Name: Sadiqabad + CountryCode: PAK + District: Punjab + Population: 141500 + - ID: 2855 + Name: Jacobabad + CountryCode: PAK + District: Sind + Population: 137700 + - ID: 2856 + Name: Shikarpur + CountryCode: PAK + District: Sind + Population: 133300 + - ID: 2857 + Name: Khanewal + CountryCode: PAK + District: Punjab + Population: 133000 + - ID: 2858 + Name: Hafizabad + CountryCode: PAK + District: Punjab + Population: 130200 + - ID: 2859 + Name: Kohat + CountryCode: PAK + District: Nothwest Border Prov + Population: 125300 + - ID: 2860 + Name: Muzaffargarh + CountryCode: PAK + District: Punjab + Population: 121600 + - ID: 2861 + Name: Khanpur + CountryCode: PAK + District: Punjab + Population: 117800 + - ID: 2862 + Name: Gojra + CountryCode: PAK + District: Punjab + Population: 115000 + - ID: 2863 + Name: Bahawalnagar + CountryCode: PAK + District: Punjab + Population: 109600 + - ID: 2864 + Name: Muridke + CountryCode: PAK + District: Punjab + Population: 108600 + - ID: 2865 + Name: Pak Pattan + CountryCode: PAK + District: Punjab + Population: 107800 + - ID: 2866 + Name: Abottabad + CountryCode: PAK + District: Nothwest Border Prov + Population: 106000 + - ID: 2867 + Name: Tando Adam + CountryCode: PAK + District: Sind + Population: 103400 + - ID: 2868 + Name: Jaranwala + CountryCode: PAK + District: Punjab + Population: 103300 + - ID: 2869 + Name: Khairpur + CountryCode: PAK + District: Sind + Population: 102200 + - ID: 2870 + Name: Chishtian Mandi + CountryCode: PAK + District: Punjab + Population: 101700 + - ID: 2871 + Name: Daska + CountryCode: PAK + District: Punjab + Population: 101500 + - ID: 2872 + Name: Dadu + CountryCode: PAK + District: Sind + Population: 98600 + - ID: 2873 + Name: Mandi Bahauddin + CountryCode: PAK + District: Punjab + Population: 97300 + - ID: 2874 + Name: Ahmadpur East + CountryCode: PAK + District: Punjab + Population: 96000 + - ID: 2875 + Name: Kamalia + CountryCode: PAK + District: Punjab + Population: 95300 + - ID: 2876 + Name: Khuzdar + CountryCode: PAK + District: Baluchistan + Population: 93100 + - ID: 2877 + Name: Vihari + CountryCode: PAK + District: Punjab + Population: 92300 + - ID: 2878 + Name: Dera Ismail Khan + CountryCode: PAK + District: Nothwest Border Prov + Population: 90400 + - ID: 2879 + Name: Wazirabad + CountryCode: PAK + District: Punjab + Population: 89700 + - ID: 2880 + Name: Nowshera + CountryCode: PAK + District: Nothwest Border Prov + Population: 89400 + - ID: 2881 + Name: Koror + CountryCode: PLW + District: Koror + Population: 12000 + - ID: 2882 + Name: Ciudad de Panamá + CountryCode: PAN + District: Panamá + Population: 471373 + - ID: 2883 + Name: San Miguelito + CountryCode: PAN + District: San Miguelito + Population: 315382 + - ID: 2884 + Name: Port Moresby + CountryCode: PNG + District: National Capital Dis + Population: 247000 + - ID: 2885 + Name: Asunción + CountryCode: PRY + District: Asunción + Population: 557776 + - ID: 2886 + Name: Ciudad del Este + CountryCode: PRY + District: Alto Paraná + Population: 133881 + - ID: 2887 + Name: San Lorenzo + CountryCode: PRY + District: Central + Population: 133395 + - ID: 2888 + Name: Lambaré + CountryCode: PRY + District: Central + Population: 99681 + - ID: 2889 + Name: Fernando de la Mora + CountryCode: PRY + District: Central + Population: 95287 + - ID: 2890 + Name: Lima + CountryCode: PER + District: Lima + Population: 6464693 + - ID: 2891 + Name: Arequipa + CountryCode: PER + District: Arequipa + Population: 762000 + - ID: 2892 + Name: Trujillo + CountryCode: PER + District: La Libertad + Population: 652000 + - ID: 2893 + Name: Chiclayo + CountryCode: PER + District: Lambayeque + Population: 517000 + - ID: 2894 + Name: Callao + CountryCode: PER + District: Callao + Population: 424294 + - ID: 2895 + Name: Iquitos + CountryCode: PER + District: Loreto + Population: 367000 + - ID: 2896 + Name: Chimbote + CountryCode: PER + District: Ancash + Population: 336000 + - ID: 2897 + Name: Huancayo + CountryCode: PER + District: Junín + Population: 327000 + - ID: 2898 + Name: Piura + CountryCode: PER + District: Piura + Population: 325000 + - ID: 2899 + Name: Cusco + CountryCode: PER + District: Cusco + Population: 291000 + - ID: 2900 + Name: Pucallpa + CountryCode: PER + District: Ucayali + Population: 220866 + - ID: 2901 + Name: Tacna + CountryCode: PER + District: Tacna + Population: 215683 + - ID: 2902 + Name: Ica + CountryCode: PER + District: Ica + Population: 194820 + - ID: 2903 + Name: Sullana + CountryCode: PER + District: Piura + Population: 147361 + - ID: 2904 + Name: Juliaca + CountryCode: PER + District: Puno + Population: 142576 + - ID: 2905 + Name: Huánuco + CountryCode: PER + District: Huanuco + Population: 129688 + - ID: 2906 + Name: Ayacucho + CountryCode: PER + District: Ayacucho + Population: 118960 + - ID: 2907 + Name: Chincha Alta + CountryCode: PER + District: Ica + Population: 110016 + - ID: 2908 + Name: Cajamarca + CountryCode: PER + District: Cajamarca + Population: 108009 + - ID: 2909 + Name: Puno + CountryCode: PER + District: Puno + Population: 101578 + - ID: 2910 + Name: Ventanilla + CountryCode: PER + District: Callao + Population: 101056 + - ID: 2911 + Name: Castilla + CountryCode: PER + District: Piura + Population: 90642 + - ID: 2912 + Name: Adamstown + CountryCode: PCN + District: – + Population: 42 + - ID: 2913 + Name: Garapan + CountryCode: MNP + District: Saipan + Population: 9200 + - ID: 2914 + Name: Lisboa + CountryCode: PRT + District: Lisboa + Population: 563210 + - ID: 2915 + Name: Porto + CountryCode: PRT + District: Porto + Population: 273060 + - ID: 2916 + Name: Amadora + CountryCode: PRT + District: Lisboa + Population: 122106 + - ID: 2917 + Name: Coímbra + CountryCode: PRT + District: Coímbra + Population: 96100 + - ID: 2918 + Name: Braga + CountryCode: PRT + District: Braga + Population: 90535 + - ID: 2919 + Name: San Juan + CountryCode: PRI + District: San Juan + Population: 434374 + - ID: 2920 + Name: Bayamón + CountryCode: PRI + District: Bayamón + Population: 224044 + - ID: 2921 + Name: Ponce + CountryCode: PRI + District: Ponce + Population: 186475 + - ID: 2922 + Name: Carolina + CountryCode: PRI + District: Carolina + Population: 186076 + - ID: 2923 + Name: Caguas + CountryCode: PRI + District: Caguas + Population: 140502 + - ID: 2924 + Name: Arecibo + CountryCode: PRI + District: Arecibo + Population: 100131 + - ID: 2925 + Name: Guaynabo + CountryCode: PRI + District: Guaynabo + Population: 100053 + - ID: 2926 + Name: Mayagüez + CountryCode: PRI + District: Mayagüez + Population: 98434 + - ID: 2927 + Name: Toa Baja + CountryCode: PRI + District: Toa Baja + Population: 94085 + - ID: 2928 + Name: Warszawa + CountryCode: POL + District: Mazowieckie + Population: 1615369 + - ID: 2929 + Name: Lódz + CountryCode: POL + District: Lodzkie + Population: 800110 + - ID: 2930 + Name: Kraków + CountryCode: POL + District: Malopolskie + Population: 738150 + - ID: 2931 + Name: Wroclaw + CountryCode: POL + District: Dolnoslaskie + Population: 636765 + - ID: 2932 + Name: Poznan + CountryCode: POL + District: Wielkopolskie + Population: 576899 + - ID: 2933 + Name: Gdansk + CountryCode: POL + District: Pomorskie + Population: 458988 + - ID: 2934 + Name: Szczecin + CountryCode: POL + District: Zachodnio-Pomorskie + Population: 416988 + - ID: 2935 + Name: Bydgoszcz + CountryCode: POL + District: Kujawsko-Pomorskie + Population: 386855 + - ID: 2936 + Name: Lublin + CountryCode: POL + District: Lubelskie + Population: 356251 + - ID: 2937 + Name: Katowice + CountryCode: POL + District: Slaskie + Population: 345934 + - ID: 2938 + Name: Bialystok + CountryCode: POL + District: Podlaskie + Population: 283937 + - ID: 2939 + Name: Czestochowa + CountryCode: POL + District: Slaskie + Population: 257812 + - ID: 2940 + Name: Gdynia + CountryCode: POL + District: Pomorskie + Population: 253521 + - ID: 2941 + Name: Sosnowiec + CountryCode: POL + District: Slaskie + Population: 244102 + - ID: 2942 + Name: Radom + CountryCode: POL + District: Mazowieckie + Population: 232262 + - ID: 2943 + Name: Kielce + CountryCode: POL + District: Swietokrzyskie + Population: 212383 + - ID: 2944 + Name: Gliwice + CountryCode: POL + District: Slaskie + Population: 212164 + - ID: 2945 + Name: Torun + CountryCode: POL + District: Kujawsko-Pomorskie + Population: 206158 + - ID: 2946 + Name: Bytom + CountryCode: POL + District: Slaskie + Population: 205560 + - ID: 2947 + Name: Zabrze + CountryCode: POL + District: Slaskie + Population: 200177 + - ID: 2948 + Name: Bielsko-Biala + CountryCode: POL + District: Slaskie + Population: 180307 + - ID: 2949 + Name: Olsztyn + CountryCode: POL + District: Warminsko-Mazurskie + Population: 170904 + - ID: 2950 + Name: Rzeszów + CountryCode: POL + District: Podkarpackie + Population: 162049 + - ID: 2951 + Name: Ruda Slaska + CountryCode: POL + District: Slaskie + Population: 159665 + - ID: 2952 + Name: Rybnik + CountryCode: POL + District: Slaskie + Population: 144582 + - ID: 2953 + Name: Walbrzych + CountryCode: POL + District: Dolnoslaskie + Population: 136923 + - ID: 2954 + Name: Tychy + CountryCode: POL + District: Slaskie + Population: 133178 + - ID: 2955 + Name: Dabrowa Górnicza + CountryCode: POL + District: Slaskie + Population: 131037 + - ID: 2956 + Name: Plock + CountryCode: POL + District: Mazowieckie + Population: 131011 + - ID: 2957 + Name: Elblag + CountryCode: POL + District: Warminsko-Mazurskie + Population: 129782 + - ID: 2958 + Name: Opole + CountryCode: POL + District: Opolskie + Population: 129553 + - ID: 2959 + Name: Gorzów Wielkopolski + CountryCode: POL + District: Lubuskie + Population: 126019 + - ID: 2960 + Name: Wloclawek + CountryCode: POL + District: Kujawsko-Pomorskie + Population: 123373 + - ID: 2961 + Name: Chorzów + CountryCode: POL + District: Slaskie + Population: 121708 + - ID: 2962 + Name: Tarnów + CountryCode: POL + District: Malopolskie + Population: 121494 + - ID: 2963 + Name: Zielona Góra + CountryCode: POL + District: Lubuskie + Population: 118182 + - ID: 2964 + Name: Koszalin + CountryCode: POL + District: Zachodnio-Pomorskie + Population: 112375 + - ID: 2965 + Name: Legnica + CountryCode: POL + District: Dolnoslaskie + Population: 109335 + - ID: 2966 + Name: Kalisz + CountryCode: POL + District: Wielkopolskie + Population: 106641 + - ID: 2967 + Name: Grudziadz + CountryCode: POL + District: Kujawsko-Pomorskie + Population: 102434 + - ID: 2968 + Name: Slupsk + CountryCode: POL + District: Pomorskie + Population: 102370 + - ID: 2969 + Name: Jastrzebie-Zdrój + CountryCode: POL + District: Slaskie + Population: 102294 + - ID: 2970 + Name: Jaworzno + CountryCode: POL + District: Slaskie + Population: 97929 + - ID: 2971 + Name: Jelenia Góra + CountryCode: POL + District: Dolnoslaskie + Population: 93901 + - ID: 2972 + Name: Malabo + CountryCode: GNQ + District: Bioko + Population: 40000 + - ID: 2973 + Name: Doha + CountryCode: QAT + District: Doha + Population: 355000 + - ID: 2974 + Name: Paris + CountryCode: FRA + District: Île-de-France + Population: 2125246 + - ID: 2975 + Name: Marseille + CountryCode: FRA + District: Provence-Alpes-Côte + Population: 798430 + - ID: 2976 + Name: Lyon + CountryCode: FRA + District: Rhône-Alpes + Population: 445452 + - ID: 2977 + Name: Toulouse + CountryCode: FRA + District: Midi-Pyrénées + Population: 390350 + - ID: 2978 + Name: Nice + CountryCode: FRA + District: Provence-Alpes-Côte + Population: 342738 + - ID: 2979 + Name: Nantes + CountryCode: FRA + District: Pays de la Loire + Population: 270251 + - ID: 2980 + Name: Strasbourg + CountryCode: FRA + District: Alsace + Population: 264115 + - ID: 2981 + Name: Montpellier + CountryCode: FRA + District: Languedoc-Roussillon + Population: 225392 + - ID: 2982 + Name: Bordeaux + CountryCode: FRA + District: Aquitaine + Population: 215363 + - ID: 2983 + Name: Rennes + CountryCode: FRA + District: Haute-Normandie + Population: 206229 + - ID: 2984 + Name: Le Havre + CountryCode: FRA + District: Champagne-Ardenne + Population: 190905 + - ID: 2985 + Name: Reims + CountryCode: FRA + District: Nord-Pas-de-Calais + Population: 187206 + - ID: 2986 + Name: Lille + CountryCode: FRA + District: Rhône-Alpes + Population: 184657 + - ID: 2987 + Name: St-Étienne + CountryCode: FRA + District: Bretagne + Population: 180210 + - ID: 2988 + Name: Toulon + CountryCode: FRA + District: Provence-Alpes-Côte + Population: 160639 + - ID: 2989 + Name: Grenoble + CountryCode: FRA + District: Rhône-Alpes + Population: 153317 + - ID: 2990 + Name: Angers + CountryCode: FRA + District: Pays de la Loire + Population: 151279 + - ID: 2991 + Name: Dijon + CountryCode: FRA + District: Bourgogne + Population: 149867 + - ID: 2992 + Name: Brest + CountryCode: FRA + District: Bretagne + Population: 149634 + - ID: 2993 + Name: Le Mans + CountryCode: FRA + District: Pays de la Loire + Population: 146105 + - ID: 2994 + Name: Clermont-Ferrand + CountryCode: FRA + District: Auvergne + Population: 137140 + - ID: 2995 + Name: Amiens + CountryCode: FRA + District: Picardie + Population: 135501 + - ID: 2996 + Name: Aix-en-Provence + CountryCode: FRA + District: Provence-Alpes-Côte + Population: 134222 + - ID: 2997 + Name: Limoges + CountryCode: FRA + District: Limousin + Population: 133968 + - ID: 2998 + Name: Nîmes + CountryCode: FRA + District: Languedoc-Roussillon + Population: 133424 + - ID: 2999 + Name: Tours + CountryCode: FRA + District: Centre + Population: 132820 + - ID: 3000 + Name: Villeurbanne + CountryCode: FRA + District: Rhône-Alpes + Population: 124215 + - ID: 3001 + Name: Metz + CountryCode: FRA + District: Lorraine + Population: 123776 + - ID: 3002 + Name: Besançon + CountryCode: FRA + District: Franche-Comté + Population: 117733 + - ID: 3003 + Name: Caen + CountryCode: FRA + District: Basse-Normandie + Population: 113987 + - ID: 3004 + Name: Orléans + CountryCode: FRA + District: Centre + Population: 113126 + - ID: 3005 + Name: Mulhouse + CountryCode: FRA + District: Alsace + Population: 110359 + - ID: 3006 + Name: Rouen + CountryCode: FRA + District: Haute-Normandie + Population: 106592 + - ID: 3007 + Name: Boulogne-Billancourt + CountryCode: FRA + District: Île-de-France + Population: 106367 + - ID: 3008 + Name: Perpignan + CountryCode: FRA + District: Languedoc-Roussillon + Population: 105115 + - ID: 3009 + Name: Nancy + CountryCode: FRA + District: Lorraine + Population: 103605 + - ID: 3010 + Name: Roubaix + CountryCode: FRA + District: Nord-Pas-de-Calais + Population: 96984 + - ID: 3011 + Name: Argenteuil + CountryCode: FRA + District: Île-de-France + Population: 93961 + - ID: 3012 + Name: Tourcoing + CountryCode: FRA + District: Nord-Pas-de-Calais + Population: 93540 + - ID: 3013 + Name: Montreuil + CountryCode: FRA + District: Île-de-France + Population: 90674 + - ID: 3014 + Name: Cayenne + CountryCode: GUF + District: Cayenne + Population: 50699 + - ID: 3015 + Name: Faaa + CountryCode: PYF + District: Tahiti + Population: 25888 + - ID: 3016 + Name: Papeete + CountryCode: PYF + District: Tahiti + Population: 25553 + - ID: 3017 + Name: Saint-Denis + CountryCode: REU + District: Saint-Denis + Population: 131480 + - ID: 3018 + Name: Bucuresti + CountryCode: ROM + District: Bukarest + Population: 2016131 + - ID: 3019 + Name: Iasi + CountryCode: ROM + District: Iasi + Population: 348070 + - ID: 3020 + Name: Constanta + CountryCode: ROM + District: Constanta + Population: 342264 + - ID: 3021 + Name: Cluj-Napoca + CountryCode: ROM + District: Cluj + Population: 332498 + - ID: 3022 + Name: Galati + CountryCode: ROM + District: Galati + Population: 330276 + - ID: 3023 + Name: Timisoara + CountryCode: ROM + District: Timis + Population: 324304 + - ID: 3024 + Name: Brasov + CountryCode: ROM + District: Brasov + Population: 314225 + - ID: 3025 + Name: Craiova + CountryCode: ROM + District: Dolj + Population: 313530 + - ID: 3026 + Name: Ploiesti + CountryCode: ROM + District: Prahova + Population: 251348 + - ID: 3027 + Name: Braila + CountryCode: ROM + District: Braila + Population: 233756 + - ID: 3028 + Name: Oradea + CountryCode: ROM + District: Bihor + Population: 222239 + - ID: 3029 + Name: Bacau + CountryCode: ROM + District: Bacau + Population: 209235 + - ID: 3030 + Name: Pitesti + CountryCode: ROM + District: Arges + Population: 187170 + - ID: 3031 + Name: Arad + CountryCode: ROM + District: Arad + Population: 184408 + - ID: 3032 + Name: Sibiu + CountryCode: ROM + District: Sibiu + Population: 169611 + - ID: 3033 + Name: Târgu Mures + CountryCode: ROM + District: Mures + Population: 165153 + - ID: 3034 + Name: Baia Mare + CountryCode: ROM + District: Maramures + Population: 149665 + - ID: 3035 + Name: Buzau + CountryCode: ROM + District: Buzau + Population: 148372 + - ID: 3036 + Name: Satu Mare + CountryCode: ROM + District: Satu Mare + Population: 130059 + - ID: 3037 + Name: Botosani + CountryCode: ROM + District: Botosani + Population: 128730 + - ID: 3038 + Name: Piatra Neamt + CountryCode: ROM + District: Neamt + Population: 125070 + - ID: 3039 + Name: Râmnicu Vâlcea + CountryCode: ROM + District: Vâlcea + Population: 119741 + - ID: 3040 + Name: Suceava + CountryCode: ROM + District: Suceava + Population: 118549 + - ID: 3041 + Name: Drobeta-Turnu Severin + CountryCode: ROM + District: Mehedinti + Population: 117865 + - ID: 3042 + Name: Târgoviste + CountryCode: ROM + District: Dâmbovita + Population: 98980 + - ID: 3043 + Name: Focsani + CountryCode: ROM + District: Vrancea + Population: 98979 + - ID: 3044 + Name: Târgu Jiu + CountryCode: ROM + District: Gorj + Population: 98524 + - ID: 3045 + Name: Tulcea + CountryCode: ROM + District: Tulcea + Population: 96278 + - ID: 3046 + Name: Resita + CountryCode: ROM + District: Caras-Severin + Population: 93976 + - ID: 3047 + Name: Kigali + CountryCode: RWA + District: Kigali + Population: 286000 + - ID: 3048 + Name: Stockholm + CountryCode: SWE + District: Lisboa + Population: 750348 + - ID: 3049 + Name: Gothenburg [Göteborg] + CountryCode: SWE + District: West Götanmaan län + Population: 466990 + - ID: 3050 + Name: Malmö + CountryCode: SWE + District: Skåne län + Population: 259579 + - ID: 3051 + Name: Uppsala + CountryCode: SWE + District: Uppsala län + Population: 189569 + - ID: 3052 + Name: Linköping + CountryCode: SWE + District: East Götanmaan län + Population: 133168 + - ID: 3053 + Name: Västerås + CountryCode: SWE + District: Västmanlands län + Population: 126328 + - ID: 3054 + Name: Örebro + CountryCode: SWE + District: Örebros län + Population: 124207 + - ID: 3055 + Name: Norrköping + CountryCode: SWE + District: East Götanmaan län + Population: 122199 + - ID: 3056 + Name: Helsingborg + CountryCode: SWE + District: Skåne län + Population: 117737 + - ID: 3057 + Name: Jönköping + CountryCode: SWE + District: Jönköpings län + Population: 117095 + - ID: 3058 + Name: Umeå + CountryCode: SWE + District: Västerbottens län + Population: 104512 + - ID: 3059 + Name: Lund + CountryCode: SWE + District: Skåne län + Population: 98948 + - ID: 3060 + Name: Borås + CountryCode: SWE + District: West Götanmaan län + Population: 96883 + - ID: 3061 + Name: Sundsvall + CountryCode: SWE + District: Västernorrlands län + Population: 93126 + - ID: 3062 + Name: Gävle + CountryCode: SWE + District: Gävleborgs län + Population: 90742 + - ID: 3063 + Name: Jamestown + CountryCode: SHN + District: Saint Helena + Population: 1500 + - ID: 3064 + Name: Basseterre + CountryCode: KNA + District: St George Basseterre + Population: 11600 + - ID: 3065 + Name: Castries + CountryCode: LCA + District: Castries + Population: 2301 + - ID: 3066 + Name: Kingstown + CountryCode: VCT + District: St George + Population: 17100 + - ID: 3067 + Name: Saint-Pierre + CountryCode: SPM + District: Saint-Pierre + Population: 5808 + - ID: 3068 + Name: Berlin + CountryCode: DEU + District: Berliini + Population: 3386667 + - ID: 3069 + Name: Hamburg + CountryCode: DEU + District: Hamburg + Population: 1704735 + - ID: 3070 + Name: Munich [München] + CountryCode: DEU + District: Baijeri + Population: 1194560 + - ID: 3071 + Name: Köln + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 962507 + - ID: 3072 + Name: Frankfurt am Main + CountryCode: DEU + District: Hessen + Population: 643821 + - ID: 3073 + Name: Essen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 599515 + - ID: 3074 + Name: Dortmund + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 590213 + - ID: 3075 + Name: Stuttgart + CountryCode: DEU + District: Baden-Württemberg + Population: 582443 + - ID: 3076 + Name: Düsseldorf + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 568855 + - ID: 3077 + Name: Bremen + CountryCode: DEU + District: Bremen + Population: 540330 + - ID: 3078 + Name: Duisburg + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 519793 + - ID: 3079 + Name: Hannover + CountryCode: DEU + District: Niedersachsen + Population: 514718 + - ID: 3080 + Name: Leipzig + CountryCode: DEU + District: Saksi + Population: 489532 + - ID: 3081 + Name: Nürnberg + CountryCode: DEU + District: Baijeri + Population: 486628 + - ID: 3082 + Name: Dresden + CountryCode: DEU + District: Saksi + Population: 476668 + - ID: 3083 + Name: Bochum + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 392830 + - ID: 3084 + Name: Wuppertal + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 368993 + - ID: 3085 + Name: Bielefeld + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 321125 + - ID: 3086 + Name: Mannheim + CountryCode: DEU + District: Baden-Württemberg + Population: 307730 + - ID: 3087 + Name: Bonn + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 301048 + - ID: 3088 + Name: Gelsenkirchen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 281979 + - ID: 3089 + Name: Karlsruhe + CountryCode: DEU + District: Baden-Württemberg + Population: 277204 + - ID: 3090 + Name: Wiesbaden + CountryCode: DEU + District: Hessen + Population: 268716 + - ID: 3091 + Name: Münster + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 264670 + - ID: 3092 + Name: Mönchengladbach + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 263697 + - ID: 3093 + Name: Chemnitz + CountryCode: DEU + District: Saksi + Population: 263222 + - ID: 3094 + Name: Augsburg + CountryCode: DEU + District: Baijeri + Population: 254867 + - ID: 3095 + Name: Halle/Saale + CountryCode: DEU + District: Anhalt Sachsen + Population: 254360 + - ID: 3096 + Name: Braunschweig + CountryCode: DEU + District: Niedersachsen + Population: 246322 + - ID: 3097 + Name: Aachen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 243825 + - ID: 3098 + Name: Krefeld + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 241769 + - ID: 3099 + Name: Magdeburg + CountryCode: DEU + District: Anhalt Sachsen + Population: 235073 + - ID: 3100 + Name: Kiel + CountryCode: DEU + District: Schleswig-Holstein + Population: 233795 + - ID: 3101 + Name: Oberhausen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 222349 + - ID: 3102 + Name: Lübeck + CountryCode: DEU + District: Schleswig-Holstein + Population: 213326 + - ID: 3103 + Name: Hagen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 205201 + - ID: 3104 + Name: Rostock + CountryCode: DEU + District: Mecklenburg-Vorpomme + Population: 203279 + - ID: 3105 + Name: Freiburg im Breisgau + CountryCode: DEU + District: Baden-Württemberg + Population: 202455 + - ID: 3106 + Name: Erfurt + CountryCode: DEU + District: Thüringen + Population: 201267 + - ID: 3107 + Name: Kassel + CountryCode: DEU + District: Hessen + Population: 196211 + - ID: 3108 + Name: Saarbrücken + CountryCode: DEU + District: Saarland + Population: 183836 + - ID: 3109 + Name: Mainz + CountryCode: DEU + District: Rheinland-Pfalz + Population: 183134 + - ID: 3110 + Name: Hamm + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 181804 + - ID: 3111 + Name: Herne + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 175661 + - ID: 3112 + Name: Mülheim an der Ruhr + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 173895 + - ID: 3113 + Name: Solingen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 165583 + - ID: 3114 + Name: Osnabrück + CountryCode: DEU + District: Niedersachsen + Population: 164539 + - ID: 3115 + Name: Ludwigshafen am Rhein + CountryCode: DEU + District: Rheinland-Pfalz + Population: 163771 + - ID: 3116 + Name: Leverkusen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 160841 + - ID: 3117 + Name: Oldenburg + CountryCode: DEU + District: Niedersachsen + Population: 154125 + - ID: 3118 + Name: Neuss + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 149702 + - ID: 3119 + Name: Heidelberg + CountryCode: DEU + District: Baden-Württemberg + Population: 139672 + - ID: 3120 + Name: Darmstadt + CountryCode: DEU + District: Hessen + Population: 137776 + - ID: 3121 + Name: Paderborn + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 137647 + - ID: 3122 + Name: Potsdam + CountryCode: DEU + District: Brandenburg + Population: 128983 + - ID: 3123 + Name: Würzburg + CountryCode: DEU + District: Baijeri + Population: 127350 + - ID: 3124 + Name: Regensburg + CountryCode: DEU + District: Baijeri + Population: 125236 + - ID: 3125 + Name: Recklinghausen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 125022 + - ID: 3126 + Name: Göttingen + CountryCode: DEU + District: Niedersachsen + Population: 124775 + - ID: 3127 + Name: Bremerhaven + CountryCode: DEU + District: Bremen + Population: 122735 + - ID: 3128 + Name: Wolfsburg + CountryCode: DEU + District: Niedersachsen + Population: 121954 + - ID: 3129 + Name: Bottrop + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 121097 + - ID: 3130 + Name: Remscheid + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 120125 + - ID: 3131 + Name: Heilbronn + CountryCode: DEU + District: Baden-Württemberg + Population: 119526 + - ID: 3132 + Name: Pforzheim + CountryCode: DEU + District: Baden-Württemberg + Population: 117227 + - ID: 3133 + Name: Offenbach am Main + CountryCode: DEU + District: Hessen + Population: 116627 + - ID: 3134 + Name: Ulm + CountryCode: DEU + District: Baden-Württemberg + Population: 116103 + - ID: 3135 + Name: Ingolstadt + CountryCode: DEU + District: Baijeri + Population: 114826 + - ID: 3136 + Name: Gera + CountryCode: DEU + District: Thüringen + Population: 114718 + - ID: 3137 + Name: Salzgitter + CountryCode: DEU + District: Niedersachsen + Population: 112934 + - ID: 3138 + Name: Cottbus + CountryCode: DEU + District: Brandenburg + Population: 110894 + - ID: 3139 + Name: Reutlingen + CountryCode: DEU + District: Baden-Württemberg + Population: 110343 + - ID: 3140 + Name: Fürth + CountryCode: DEU + District: Baijeri + Population: 109771 + - ID: 3141 + Name: Siegen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 109225 + - ID: 3142 + Name: Koblenz + CountryCode: DEU + District: Rheinland-Pfalz + Population: 108003 + - ID: 3143 + Name: Moers + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 106837 + - ID: 3144 + Name: Bergisch Gladbach + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 106150 + - ID: 3145 + Name: Zwickau + CountryCode: DEU + District: Saksi + Population: 104146 + - ID: 3146 + Name: Hildesheim + CountryCode: DEU + District: Niedersachsen + Population: 104013 + - ID: 3147 + Name: Witten + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 103384 + - ID: 3148 + Name: Schwerin + CountryCode: DEU + District: Mecklenburg-Vorpomme + Population: 102878 + - ID: 3149 + Name: Erlangen + CountryCode: DEU + District: Baijeri + Population: 100750 + - ID: 3150 + Name: Kaiserslautern + CountryCode: DEU + District: Rheinland-Pfalz + Population: 100025 + - ID: 3151 + Name: Trier + CountryCode: DEU + District: Rheinland-Pfalz + Population: 99891 + - ID: 3152 + Name: Jena + CountryCode: DEU + District: Thüringen + Population: 99779 + - ID: 3153 + Name: Iserlohn + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 99474 + - ID: 3154 + Name: Gütersloh + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 95028 + - ID: 3155 + Name: Marl + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 93735 + - ID: 3156 + Name: Lünen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 92044 + - ID: 3157 + Name: Düren + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 91092 + - ID: 3158 + Name: Ratingen + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 90951 + - ID: 3159 + Name: Velbert + CountryCode: DEU + District: Nordrhein-Westfalen + Population: 89881 + - ID: 3160 + Name: Esslingen am Neckar + CountryCode: DEU + District: Baden-Württemberg + Population: 89667 + - ID: 3161 + Name: Honiara + CountryCode: SLB + District: Honiara + Population: 50100 + - ID: 3162 + Name: Lusaka + CountryCode: ZMB + District: Lusaka + Population: 1317000 + - ID: 3163 + Name: Ndola + CountryCode: ZMB + District: Copperbelt + Population: 329200 + - ID: 3164 + Name: Kitwe + CountryCode: ZMB + District: Copperbelt + Population: 288600 + - ID: 3165 + Name: Kabwe + CountryCode: ZMB + District: Central + Population: 154300 + - ID: 3166 + Name: Chingola + CountryCode: ZMB + District: Copperbelt + Population: 142400 + - ID: 3167 + Name: Mufulira + CountryCode: ZMB + District: Copperbelt + Population: 123900 + - ID: 3168 + Name: Luanshya + CountryCode: ZMB + District: Copperbelt + Population: 118100 + - ID: 3169 + Name: Apia + CountryCode: WSM + District: Upolu + Population: 35900 + - ID: 3170 + Name: Serravalle + CountryCode: SMR + District: Serravalle/Dogano + Population: 4802 + - ID: 3171 + Name: San Marino + CountryCode: SMR + District: San Marino + Population: 2294 + - ID: 3172 + Name: São Tomé + CountryCode: STP + District: Aqua Grande + Population: 49541 + - ID: 3173 + Name: Riyadh + CountryCode: SAU + District: Riyadh + Population: 3324000 + - ID: 3174 + Name: Jedda + CountryCode: SAU + District: Mekka + Population: 2046300 + - ID: 3175 + Name: Mekka + CountryCode: SAU + District: Mekka + Population: 965700 + - ID: 3176 + Name: Medina + CountryCode: SAU + District: Medina + Population: 608300 + - ID: 3177 + Name: al-Dammam + CountryCode: SAU + District: al-Sharqiya + Population: 482300 + - ID: 3178 + Name: al-Taif + CountryCode: SAU + District: Mekka + Population: 416100 + - ID: 3179 + Name: Tabuk + CountryCode: SAU + District: Tabuk + Population: 292600 + - ID: 3180 + Name: Burayda + CountryCode: SAU + District: al-Qasim + Population: 248600 + - ID: 3181 + Name: al-Hufuf + CountryCode: SAU + District: al-Sharqiya + Population: 225800 + - ID: 3182 + Name: al-Mubarraz + CountryCode: SAU + District: al-Sharqiya + Population: 219100 + - ID: 3183 + Name: Khamis Mushayt + CountryCode: SAU + District: Asir + Population: 217900 + - ID: 3184 + Name: Hail + CountryCode: SAU + District: Hail + Population: 176800 + - ID: 3185 + Name: al-Kharj + CountryCode: SAU + District: Riad + Population: 152100 + - ID: 3186 + Name: al-Khubar + CountryCode: SAU + District: al-Sharqiya + Population: 141700 + - ID: 3187 + Name: Jubayl + CountryCode: SAU + District: al-Sharqiya + Population: 140800 + - ID: 3188 + Name: Hafar al-Batin + CountryCode: SAU + District: al-Sharqiya + Population: 137800 + - ID: 3189 + Name: al-Tuqba + CountryCode: SAU + District: al-Sharqiya + Population: 125700 + - ID: 3190 + Name: Yanbu + CountryCode: SAU + District: Medina + Population: 119800 + - ID: 3191 + Name: Abha + CountryCode: SAU + District: Asir + Population: 112300 + - ID: 3192 + Name: Ara´ar + CountryCode: SAU + District: al-Khudud al-Samaliy + Population: 108100 + - ID: 3193 + Name: al-Qatif + CountryCode: SAU + District: al-Sharqiya + Population: 98900 + - ID: 3194 + Name: al-Hawiya + CountryCode: SAU + District: Mekka + Population: 93900 + - ID: 3195 + Name: Unayza + CountryCode: SAU + District: Qasim + Population: 91100 + - ID: 3196 + Name: Najran + CountryCode: SAU + District: Najran + Population: 91000 + - ID: 3197 + Name: Pikine + CountryCode: SEN + District: Cap-Vert + Population: 855287 + - ID: 3198 + Name: Dakar + CountryCode: SEN + District: Cap-Vert + Population: 785071 + - ID: 3199 + Name: Thiès + CountryCode: SEN + District: Thiès + Population: 248000 + - ID: 3200 + Name: Kaolack + CountryCode: SEN + District: Kaolack + Population: 199000 + - ID: 3201 + Name: Ziguinchor + CountryCode: SEN + District: Ziguinchor + Population: 192000 + - ID: 3202 + Name: Rufisque + CountryCode: SEN + District: Cap-Vert + Population: 150000 + - ID: 3203 + Name: Saint-Louis + CountryCode: SEN + District: Saint-Louis + Population: 132400 + - ID: 3204 + Name: Mbour + CountryCode: SEN + District: Thiès + Population: 109300 + - ID: 3205 + Name: Diourbel + CountryCode: SEN + District: Diourbel + Population: 99400 + - ID: 3206 + Name: Victoria + CountryCode: SYC + District: Mahé + Population: 41000 + - ID: 3207 + Name: Freetown + CountryCode: SLE + District: Western + Population: 850000 + - ID: 3208 + Name: Singapore + CountryCode: SGP + District: – + Population: 4017733 + - ID: 3209 + Name: Bratislava + CountryCode: SVK + District: Bratislava + Population: 448292 + - ID: 3210 + Name: Košice + CountryCode: SVK + District: Východné Slovensko + Population: 241874 + - ID: 3211 + Name: Prešov + CountryCode: SVK + District: Východné Slovensko + Population: 93977 + - ID: 3212 + Name: Ljubljana + CountryCode: SVN + District: Osrednjeslovenska + Population: 270986 + - ID: 3213 + Name: Maribor + CountryCode: SVN + District: Podravska + Population: 115532 + - ID: 3214 + Name: Mogadishu + CountryCode: SOM + District: Banaadir + Population: 997000 + - ID: 3215 + Name: Hargeysa + CountryCode: SOM + District: Woqooyi Galbeed + Population: 90000 + - ID: 3216 + Name: Kismaayo + CountryCode: SOM + District: Jubbada Hoose + Population: 90000 + - ID: 3217 + Name: Colombo + CountryCode: LKA + District: Western + Population: 645000 + - ID: 3218 + Name: Dehiwala + CountryCode: LKA + District: Western + Population: 203000 + - ID: 3219 + Name: Moratuwa + CountryCode: LKA + District: Western + Population: 190000 + - ID: 3220 + Name: Jaffna + CountryCode: LKA + District: Northern + Population: 149000 + - ID: 3221 + Name: Kandy + CountryCode: LKA + District: Central + Population: 140000 + - ID: 3222 + Name: Sri Jayawardenepura Kotte + CountryCode: LKA + District: Western + Population: 118000 + - ID: 3223 + Name: Negombo + CountryCode: LKA + District: Western + Population: 100000 + - ID: 3224 + Name: Omdurman + CountryCode: SDN + District: Khartum + Population: 1271403 + - ID: 3225 + Name: Khartum + CountryCode: SDN + District: Khartum + Population: 947483 + - ID: 3226 + Name: Sharq al-Nil + CountryCode: SDN + District: Khartum + Population: 700887 + - ID: 3227 + Name: Port Sudan + CountryCode: SDN + District: al-Bahr al-Ahmar + Population: 308195 + - ID: 3228 + Name: Kassala + CountryCode: SDN + District: Kassala + Population: 234622 + - ID: 3229 + Name: Obeid + CountryCode: SDN + District: Kurdufan al-Shamaliy + Population: 229425 + - ID: 3230 + Name: Nyala + CountryCode: SDN + District: Darfur al-Janubiya + Population: 227183 + - ID: 3231 + Name: Wad Madani + CountryCode: SDN + District: al-Jazira + Population: 211362 + - ID: 3232 + Name: al-Qadarif + CountryCode: SDN + District: al-Qadarif + Population: 191164 + - ID: 3233 + Name: Kusti + CountryCode: SDN + District: al-Bahr al-Abyad + Population: 173599 + - ID: 3234 + Name: al-Fashir + CountryCode: SDN + District: Darfur al-Shamaliya + Population: 141884 + - ID: 3235 + Name: Juba + CountryCode: SDN + District: Bahr al-Jabal + Population: 114980 + - ID: 3236 + Name: Helsinki [Helsingfors] + CountryCode: FIN + District: Newmaa + Population: 555474 + - ID: 3237 + Name: Espoo + CountryCode: FIN + District: Newmaa + Population: 213271 + - ID: 3238 + Name: Tampere + CountryCode: FIN + District: Pirkanmaa + Population: 195468 + - ID: 3239 + Name: Vantaa + CountryCode: FIN + District: Newmaa + Population: 178471 + - ID: 3240 + Name: Turku [Åbo] + CountryCode: FIN + District: Varsinais-Suomi + Population: 172561 + - ID: 3241 + Name: Oulu + CountryCode: FIN + District: Pohjois-Pohjanmaa + Population: 120753 + - ID: 3242 + Name: Lahti + CountryCode: FIN + District: Päijät-Häme + Population: 96921 + - ID: 3243 + Name: Paramaribo + CountryCode: SUR + District: Paramaribo + Population: 112000 + - ID: 3244 + Name: Mbabane + CountryCode: SWZ + District: Hhohho + Population: 61000 + - ID: 3245 + Name: Zürich + CountryCode: CHE + District: Zürich + Population: 336800 + - ID: 3246 + Name: Geneve + CountryCode: CHE + District: Geneve + Population: 173500 + - ID: 3247 + Name: Basel + CountryCode: CHE + District: Basel-Stadt + Population: 166700 + - ID: 3248 + Name: Bern + CountryCode: CHE + District: Bern + Population: 122700 + - ID: 3249 + Name: Lausanne + CountryCode: CHE + District: Vaud + Population: 114500 + - ID: 3250 + Name: Damascus + CountryCode: SYR + District: Damascus + Population: 1347000 + - ID: 3251 + Name: Aleppo + CountryCode: SYR + District: Aleppo + Population: 1261983 + - ID: 3252 + Name: Hims + CountryCode: SYR + District: Hims + Population: 507404 + - ID: 3253 + Name: Hama + CountryCode: SYR + District: Hama + Population: 343361 + - ID: 3254 + Name: Latakia + CountryCode: SYR + District: Latakia + Population: 264563 + - ID: 3255 + Name: al-Qamishliya + CountryCode: SYR + District: al-Hasaka + Population: 144286 + - ID: 3256 + Name: Dayr al-Zawr + CountryCode: SYR + District: Dayr al-Zawr + Population: 140459 + - ID: 3257 + Name: Jaramana + CountryCode: SYR + District: Damaskos + Population: 138469 + - ID: 3258 + Name: Duma + CountryCode: SYR + District: Damaskos + Population: 131158 + - ID: 3259 + Name: al-Raqqa + CountryCode: SYR + District: al-Raqqa + Population: 108020 + - ID: 3260 + Name: Idlib + CountryCode: SYR + District: Idlib + Population: 91081 + - ID: 3261 + Name: Dushanbe + CountryCode: TJK + District: Karotegin + Population: 524000 + - ID: 3262 + Name: Khujand + CountryCode: TJK + District: Khujand + Population: 161500 + - ID: 3263 + Name: Taipei + CountryCode: TWN + District: Taipei + Population: 2641312 + - ID: 3264 + Name: Kaohsiung + CountryCode: TWN + District: Kaohsiung + Population: 1475505 + - ID: 3265 + Name: Taichung + CountryCode: TWN + District: Taichung + Population: 940589 + - ID: 3266 + Name: Tainan + CountryCode: TWN + District: Tainan + Population: 728060 + - ID: 3267 + Name: Panchiao + CountryCode: TWN + District: Taipei + Population: 523850 + - ID: 3268 + Name: Chungho + CountryCode: TWN + District: Taipei + Population: 392176 + - ID: 3269 + Name: Keelung (Chilung) + CountryCode: TWN + District: Keelung + Population: 385201 + - ID: 3270 + Name: Sanchung + CountryCode: TWN + District: Taipei + Population: 380084 + - ID: 3271 + Name: Hsinchuang + CountryCode: TWN + District: Taipei + Population: 365048 + - ID: 3272 + Name: Hsinchu + CountryCode: TWN + District: Hsinchu + Population: 361958 + - ID: 3273 + Name: Chungli + CountryCode: TWN + District: Taoyuan + Population: 318649 + - ID: 3274 + Name: Fengshan + CountryCode: TWN + District: Kaohsiung + Population: 318562 + - ID: 3275 + Name: Taoyuan + CountryCode: TWN + District: Taoyuan + Population: 316438 + - ID: 3276 + Name: Chiayi + CountryCode: TWN + District: Chiayi + Population: 265109 + - ID: 3277 + Name: Hsintien + CountryCode: TWN + District: Taipei + Population: 263603 + - ID: 3278 + Name: Changhwa + CountryCode: TWN + District: Changhwa + Population: 227715 + - ID: 3279 + Name: Yungho + CountryCode: TWN + District: Taipei + Population: 227700 + - ID: 3280 + Name: Tucheng + CountryCode: TWN + District: Taipei + Population: 224897 + - ID: 3281 + Name: Pingtung + CountryCode: TWN + District: Pingtung + Population: 214727 + - ID: 3282 + Name: Yungkang + CountryCode: TWN + District: Tainan + Population: 193005 + - ID: 3283 + Name: Pingchen + CountryCode: TWN + District: Taoyuan + Population: 188344 + - ID: 3284 + Name: Tali + CountryCode: TWN + District: Taichung + Population: 171940 + - ID: 3285 + Name: Taiping + CountryCode: TWN + District: '' + Population: 165524 + - ID: 3286 + Name: Pate + CountryCode: TWN + District: Taoyuan + Population: 161700 + - ID: 3287 + Name: Fengyuan + CountryCode: TWN + District: Taichung + Population: 161032 + - ID: 3288 + Name: Luchou + CountryCode: TWN + District: Taipei + Population: 160516 + - ID: 3289 + Name: Hsichuh + CountryCode: TWN + District: Taipei + Population: 154976 + - ID: 3290 + Name: Shulin + CountryCode: TWN + District: Taipei + Population: 151260 + - ID: 3291 + Name: Yuanlin + CountryCode: TWN + District: Changhwa + Population: 126402 + - ID: 3292 + Name: Yangmei + CountryCode: TWN + District: Taoyuan + Population: 126323 + - ID: 3293 + Name: Taliao + CountryCode: TWN + District: '' + Population: 115897 + - ID: 3294 + Name: Kueishan + CountryCode: TWN + District: '' + Population: 112195 + - ID: 3295 + Name: Tanshui + CountryCode: TWN + District: Taipei + Population: 111882 + - ID: 3296 + Name: Taitung + CountryCode: TWN + District: Taitung + Population: 111039 + - ID: 3297 + Name: Hualien + CountryCode: TWN + District: Hualien + Population: 108407 + - ID: 3298 + Name: Nantou + CountryCode: TWN + District: Nantou + Population: 104723 + - ID: 3299 + Name: Lungtan + CountryCode: TWN + District: Taipei + Population: 103088 + - ID: 3300 + Name: Touliu + CountryCode: TWN + District: Yünlin + Population: 98900 + - ID: 3301 + Name: Tsaotun + CountryCode: TWN + District: Nantou + Population: 96800 + - ID: 3302 + Name: Kangshan + CountryCode: TWN + District: Kaohsiung + Population: 92200 + - ID: 3303 + Name: Ilan + CountryCode: TWN + District: Ilan + Population: 92000 + - ID: 3304 + Name: Miaoli + CountryCode: TWN + District: Miaoli + Population: 90000 + - ID: 3305 + Name: Dar es Salaam + CountryCode: TZA + District: Dar es Salaam + Population: 1747000 + - ID: 3306 + Name: Dodoma + CountryCode: TZA + District: Dodoma + Population: 189000 + - ID: 3307 + Name: Mwanza + CountryCode: TZA + District: Mwanza + Population: 172300 + - ID: 3308 + Name: Zanzibar + CountryCode: TZA + District: Zanzibar West + Population: 157634 + - ID: 3309 + Name: Tanga + CountryCode: TZA + District: Tanga + Population: 137400 + - ID: 3310 + Name: Mbeya + CountryCode: TZA + District: Mbeya + Population: 130800 + - ID: 3311 + Name: Morogoro + CountryCode: TZA + District: Morogoro + Population: 117800 + - ID: 3312 + Name: Arusha + CountryCode: TZA + District: Arusha + Population: 102500 + - ID: 3313 + Name: Moshi + CountryCode: TZA + District: Kilimanjaro + Population: 96800 + - ID: 3314 + Name: Tabora + CountryCode: TZA + District: Tabora + Population: 92800 + - ID: 3315 + Name: København + CountryCode: DNK + District: København + Population: 495699 + - ID: 3316 + Name: Århus + CountryCode: DNK + District: Århus + Population: 284846 + - ID: 3317 + Name: Odense + CountryCode: DNK + District: Fyn + Population: 183912 + - ID: 3318 + Name: Aalborg + CountryCode: DNK + District: Nordjylland + Population: 161161 + - ID: 3319 + Name: Frederiksberg + CountryCode: DNK + District: Frederiksberg + Population: 90327 + - ID: 3320 + Name: Bangkok + CountryCode: THA + District: Bangkok + Population: 6320174 + - ID: 3321 + Name: Nonthaburi + CountryCode: THA + District: Nonthaburi + Population: 292100 + - ID: 3322 + Name: Nakhon Ratchasima + CountryCode: THA + District: Nakhon Ratchasima + Population: 181400 + - ID: 3323 + Name: Chiang Mai + CountryCode: THA + District: Chiang Mai + Population: 171100 + - ID: 3324 + Name: Udon Thani + CountryCode: THA + District: Udon Thani + Population: 158100 + - ID: 3325 + Name: Hat Yai + CountryCode: THA + District: Songkhla + Population: 148632 + - ID: 3326 + Name: Khon Kaen + CountryCode: THA + District: Khon Kaen + Population: 126500 + - ID: 3327 + Name: Pak Kret + CountryCode: THA + District: Nonthaburi + Population: 126055 + - ID: 3328 + Name: Nakhon Sawan + CountryCode: THA + District: Nakhon Sawan + Population: 123800 + - ID: 3329 + Name: Ubon Ratchathani + CountryCode: THA + District: Ubon Ratchathani + Population: 116300 + - ID: 3330 + Name: Songkhla + CountryCode: THA + District: Songkhla + Population: 94900 + - ID: 3331 + Name: Nakhon Pathom + CountryCode: THA + District: Nakhon Pathom + Population: 94100 + - ID: 3332 + Name: Lomé + CountryCode: TGO + District: Maritime + Population: 375000 + - ID: 3333 + Name: Fakaofo + CountryCode: TKL + District: Fakaofo + Population: 300 + - ID: 3334 + Name: Nuku´alofa + CountryCode: TON + District: Tongatapu + Population: 22400 + - ID: 3335 + Name: Chaguanas + CountryCode: TTO + District: Caroni + Population: 56601 + - ID: 3336 + Name: Port-of-Spain + CountryCode: TTO + District: Port-of-Spain + Population: 43396 + - ID: 3337 + Name: N´Djaména + CountryCode: TCD + District: Chari-Baguirmi + Population: 530965 + - ID: 3338 + Name: Moundou + CountryCode: TCD + District: Logone Occidental + Population: 99500 + - ID: 3339 + Name: Praha + CountryCode: CZE + District: Hlavní mesto Praha + Population: 1181126 + - ID: 3340 + Name: Brno + CountryCode: CZE + District: Jizní Morava + Population: 381862 + - ID: 3341 + Name: Ostrava + CountryCode: CZE + District: Severní Morava + Population: 320041 + - ID: 3342 + Name: Plzen + CountryCode: CZE + District: Zapadní Cechy + Population: 166759 + - ID: 3343 + Name: Olomouc + CountryCode: CZE + District: Severní Morava + Population: 102702 + - ID: 3344 + Name: Liberec + CountryCode: CZE + District: Severní Cechy + Population: 99155 + - ID: 3345 + Name: Ceské Budejovice + CountryCode: CZE + District: Jizní Cechy + Population: 98186 + - ID: 3346 + Name: Hradec Králové + CountryCode: CZE + District: Východní Cechy + Population: 98080 + - ID: 3347 + Name: Ústí nad Labem + CountryCode: CZE + District: Severní Cechy + Population: 95491 + - ID: 3348 + Name: Pardubice + CountryCode: CZE + District: Východní Cechy + Population: 91309 + - ID: 3349 + Name: Tunis + CountryCode: TUN + District: Tunis + Population: 690600 + - ID: 3350 + Name: Sfax + CountryCode: TUN + District: Sfax + Population: 257800 + - ID: 3351 + Name: Ariana + CountryCode: TUN + District: Ariana + Population: 197000 + - ID: 3352 + Name: Ettadhamen + CountryCode: TUN + District: Ariana + Population: 178600 + - ID: 3353 + Name: Sousse + CountryCode: TUN + District: Sousse + Population: 145900 + - ID: 3354 + Name: Kairouan + CountryCode: TUN + District: Kairouan + Population: 113100 + - ID: 3355 + Name: Biserta + CountryCode: TUN + District: Biserta + Population: 108900 + - ID: 3356 + Name: Gabès + CountryCode: TUN + District: Gabès + Population: 106600 + - ID: 3357 + Name: Istanbul + CountryCode: TUR + District: Istanbul + Population: 8787958 + - ID: 3358 + Name: Ankara + CountryCode: TUR + District: Ankara + Population: 3038159 + - ID: 3359 + Name: Izmir + CountryCode: TUR + District: Izmir + Population: 2130359 + - ID: 3360 + Name: Adana + CountryCode: TUR + District: Adana + Population: 1131198 + - ID: 3361 + Name: Bursa + CountryCode: TUR + District: Bursa + Population: 1095842 + - ID: 3362 + Name: Gaziantep + CountryCode: TUR + District: Gaziantep + Population: 789056 + - ID: 3363 + Name: Konya + CountryCode: TUR + District: Konya + Population: 628364 + - ID: 3364 + Name: Mersin (Içel) + CountryCode: TUR + District: Içel + Population: 587212 + - ID: 3365 + Name: Antalya + CountryCode: TUR + District: Antalya + Population: 564914 + - ID: 3366 + Name: Diyarbakir + CountryCode: TUR + District: Diyarbakir + Population: 479884 + - ID: 3367 + Name: Kayseri + CountryCode: TUR + District: Kayseri + Population: 475657 + - ID: 3368 + Name: Eskisehir + CountryCode: TUR + District: Eskisehir + Population: 470781 + - ID: 3369 + Name: Sanliurfa + CountryCode: TUR + District: Sanliurfa + Population: 405905 + - ID: 3370 + Name: Samsun + CountryCode: TUR + District: Samsun + Population: 339871 + - ID: 3371 + Name: Malatya + CountryCode: TUR + District: Malatya + Population: 330312 + - ID: 3372 + Name: Gebze + CountryCode: TUR + District: Kocaeli + Population: 264170 + - ID: 3373 + Name: Denizli + CountryCode: TUR + District: Denizli + Population: 253848 + - ID: 3374 + Name: Sivas + CountryCode: TUR + District: Sivas + Population: 246642 + - ID: 3375 + Name: Erzurum + CountryCode: TUR + District: Erzurum + Population: 246535 + - ID: 3376 + Name: Tarsus + CountryCode: TUR + District: Adana + Population: 246206 + - ID: 3377 + Name: Kahramanmaras + CountryCode: TUR + District: Kahramanmaras + Population: 245772 + - ID: 3378 + Name: Elâzig + CountryCode: TUR + District: Elâzig + Population: 228815 + - ID: 3379 + Name: Van + CountryCode: TUR + District: Van + Population: 219319 + - ID: 3380 + Name: Sultanbeyli + CountryCode: TUR + District: Istanbul + Population: 211068 + - ID: 3381 + Name: Izmit (Kocaeli) + CountryCode: TUR + District: Kocaeli + Population: 210068 + - ID: 3382 + Name: Manisa + CountryCode: TUR + District: Manisa + Population: 207148 + - ID: 3383 + Name: Batman + CountryCode: TUR + District: Batman + Population: 203793 + - ID: 3384 + Name: Balikesir + CountryCode: TUR + District: Balikesir + Population: 196382 + - ID: 3385 + Name: Sakarya (Adapazari) + CountryCode: TUR + District: Sakarya + Population: 190641 + - ID: 3386 + Name: Iskenderun + CountryCode: TUR + District: Hatay + Population: 153022 + - ID: 3387 + Name: Osmaniye + CountryCode: TUR + District: Osmaniye + Population: 146003 + - ID: 3388 + Name: Çorum + CountryCode: TUR + District: Çorum + Population: 145495 + - ID: 3389 + Name: Kütahya + CountryCode: TUR + District: Kütahya + Population: 144761 + - ID: 3390 + Name: Hatay (Antakya) + CountryCode: TUR + District: Hatay + Population: 143982 + - ID: 3391 + Name: Kirikkale + CountryCode: TUR + District: Kirikkale + Population: 142044 + - ID: 3392 + Name: Adiyaman + CountryCode: TUR + District: Adiyaman + Population: 141529 + - ID: 3393 + Name: Trabzon + CountryCode: TUR + District: Trabzon + Population: 138234 + - ID: 3394 + Name: Ordu + CountryCode: TUR + District: Ordu + Population: 133642 + - ID: 3395 + Name: Aydin + CountryCode: TUR + District: Aydin + Population: 128651 + - ID: 3396 + Name: Usak + CountryCode: TUR + District: Usak + Population: 128162 + - ID: 3397 + Name: Edirne + CountryCode: TUR + District: Edirne + Population: 123383 + - ID: 3398 + Name: Çorlu + CountryCode: TUR + District: Tekirdag + Population: 123300 + - ID: 3399 + Name: Isparta + CountryCode: TUR + District: Isparta + Population: 121911 + - ID: 3400 + Name: Karabük + CountryCode: TUR + District: Karabük + Population: 118285 + - ID: 3401 + Name: Kilis + CountryCode: TUR + District: Kilis + Population: 118245 + - ID: 3402 + Name: Alanya + CountryCode: TUR + District: Antalya + Population: 117300 + - ID: 3403 + Name: Kiziltepe + CountryCode: TUR + District: Mardin + Population: 112000 + - ID: 3404 + Name: Zonguldak + CountryCode: TUR + District: Zonguldak + Population: 111542 + - ID: 3405 + Name: Siirt + CountryCode: TUR + District: Siirt + Population: 107100 + - ID: 3406 + Name: Viransehir + CountryCode: TUR + District: Sanliurfa + Population: 106400 + - ID: 3407 + Name: Tekirdag + CountryCode: TUR + District: Tekirdag + Population: 106077 + - ID: 3408 + Name: Karaman + CountryCode: TUR + District: Karaman + Population: 104200 + - ID: 3409 + Name: Afyon + CountryCode: TUR + District: Afyon + Population: 103984 + - ID: 3410 + Name: Aksaray + CountryCode: TUR + District: Aksaray + Population: 102681 + - ID: 3411 + Name: Ceyhan + CountryCode: TUR + District: Adana + Population: 102412 + - ID: 3412 + Name: Erzincan + CountryCode: TUR + District: Erzincan + Population: 102304 + - ID: 3413 + Name: Bismil + CountryCode: TUR + District: Diyarbakir + Population: 101400 + - ID: 3414 + Name: Nazilli + CountryCode: TUR + District: Aydin + Population: 99900 + - ID: 3415 + Name: Tokat + CountryCode: TUR + District: Tokat + Population: 99500 + - ID: 3416 + Name: Kars + CountryCode: TUR + District: Kars + Population: 93000 + - ID: 3417 + Name: Inegöl + CountryCode: TUR + District: Bursa + Population: 90500 + - ID: 3418 + Name: Bandirma + CountryCode: TUR + District: Balikesir + Population: 90200 + - ID: 3419 + Name: Ashgabat + CountryCode: TKM + District: Ahal + Population: 540600 + - ID: 3420 + Name: Chärjew + CountryCode: TKM + District: Lebap + Population: 189200 + - ID: 3421 + Name: Dashhowuz + CountryCode: TKM + District: Dashhowuz + Population: 141800 + - ID: 3422 + Name: Mary + CountryCode: TKM + District: Mary + Population: 101000 + - ID: 3423 + Name: Cockburn Town + CountryCode: TCA + District: Grand Turk + Population: 4800 + - ID: 3424 + Name: Funafuti + CountryCode: TUV + District: Funafuti + Population: 4600 + - ID: 3425 + Name: Kampala + CountryCode: UGA + District: Central + Population: 890800 + - ID: 3426 + Name: Kyiv + CountryCode: UKR + District: Kiova + Population: 2624000 + - ID: 3427 + Name: Harkova [Harkiv] + CountryCode: UKR + District: Harkova + Population: 1500000 + - ID: 3428 + Name: Dnipropetrovsk + CountryCode: UKR + District: Dnipropetrovsk + Population: 1103000 + - ID: 3429 + Name: Donetsk + CountryCode: UKR + District: Donetsk + Population: 1050000 + - ID: 3430 + Name: Odesa + CountryCode: UKR + District: Odesa + Population: 1011000 + - ID: 3431 + Name: Zaporizzja + CountryCode: UKR + District: Zaporizzja + Population: 848000 + - ID: 3432 + Name: Lviv + CountryCode: UKR + District: Lviv + Population: 788000 + - ID: 3433 + Name: Kryvyi Rig + CountryCode: UKR + District: Dnipropetrovsk + Population: 703000 + - ID: 3434 + Name: Mykolajiv + CountryCode: UKR + District: Mykolajiv + Population: 508000 + - ID: 3435 + Name: Mariupol + CountryCode: UKR + District: Donetsk + Population: 490000 + - ID: 3436 + Name: Lugansk + CountryCode: UKR + District: Lugansk + Population: 469000 + - ID: 3437 + Name: Vinnytsja + CountryCode: UKR + District: Vinnytsja + Population: 391000 + - ID: 3438 + Name: Makijivka + CountryCode: UKR + District: Donetsk + Population: 384000 + - ID: 3439 + Name: Herson + CountryCode: UKR + District: Herson + Population: 353000 + - ID: 3440 + Name: Sevastopol + CountryCode: UKR + District: Krim + Population: 348000 + - ID: 3441 + Name: Simferopol + CountryCode: UKR + District: Krim + Population: 339000 + - ID: 3442 + Name: Pultava [Poltava] + CountryCode: UKR + District: Pultava + Population: 313000 + - ID: 3443 + Name: Tšernigiv + CountryCode: UKR + District: Tšernigiv + Population: 313000 + - ID: 3444 + Name: Tšerkasy + CountryCode: UKR + District: Tšerkasy + Population: 309000 + - ID: 3445 + Name: Gorlivka + CountryCode: UKR + District: Donetsk + Population: 299000 + - ID: 3446 + Name: Zytomyr + CountryCode: UKR + District: Zytomyr + Population: 297000 + - ID: 3447 + Name: Sumy + CountryCode: UKR + District: Sumy + Population: 294000 + - ID: 3448 + Name: Dniprodzerzynsk + CountryCode: UKR + District: Dnipropetrovsk + Population: 270000 + - ID: 3449 + Name: Kirovograd + CountryCode: UKR + District: Kirovograd + Population: 265000 + - ID: 3450 + Name: Hmelnytskyi + CountryCode: UKR + District: Hmelnytskyi + Population: 262000 + - ID: 3451 + Name: Tšernivtsi + CountryCode: UKR + District: Tšernivtsi + Population: 259000 + - ID: 3452 + Name: Rivne + CountryCode: UKR + District: Rivne + Population: 245000 + - ID: 3453 + Name: Krementšuk + CountryCode: UKR + District: Pultava + Population: 239000 + - ID: 3454 + Name: Ivano-Frankivsk + CountryCode: UKR + District: Ivano-Frankivsk + Population: 237000 + - ID: 3455 + Name: Ternopil + CountryCode: UKR + District: Ternopil + Population: 236000 + - ID: 3456 + Name: Lutsk + CountryCode: UKR + District: Volynia + Population: 217000 + - ID: 3457 + Name: Bila Tserkva + CountryCode: UKR + District: Kiova + Population: 215000 + - ID: 3458 + Name: Kramatorsk + CountryCode: UKR + District: Donetsk + Population: 186000 + - ID: 3459 + Name: Melitopol + CountryCode: UKR + District: Zaporizzja + Population: 169000 + - ID: 3460 + Name: Kertš + CountryCode: UKR + District: Krim + Population: 162000 + - ID: 3461 + Name: Nikopol + CountryCode: UKR + District: Dnipropetrovsk + Population: 149000 + - ID: 3462 + Name: Berdjansk + CountryCode: UKR + District: Zaporizzja + Population: 130000 + - ID: 3463 + Name: Pavlograd + CountryCode: UKR + District: Dnipropetrovsk + Population: 127000 + - ID: 3464 + Name: Sjeverodonetsk + CountryCode: UKR + District: Lugansk + Population: 127000 + - ID: 3465 + Name: Slovjansk + CountryCode: UKR + District: Donetsk + Population: 127000 + - ID: 3466 + Name: Uzgorod + CountryCode: UKR + District: Taka-Karpatia + Population: 127000 + - ID: 3467 + Name: Altševsk + CountryCode: UKR + District: Lugansk + Population: 119000 + - ID: 3468 + Name: Lysytšansk + CountryCode: UKR + District: Lugansk + Population: 116000 + - ID: 3469 + Name: Jevpatorija + CountryCode: UKR + District: Krim + Population: 112000 + - ID: 3470 + Name: Kamjanets-Podilskyi + CountryCode: UKR + District: Hmelnytskyi + Population: 109000 + - ID: 3471 + Name: Jenakijeve + CountryCode: UKR + District: Donetsk + Population: 105000 + - ID: 3472 + Name: Krasnyi Lutš + CountryCode: UKR + District: Lugansk + Population: 101000 + - ID: 3473 + Name: Stahanov + CountryCode: UKR + District: Lugansk + Population: 101000 + - ID: 3474 + Name: Oleksandrija + CountryCode: UKR + District: Kirovograd + Population: 99000 + - ID: 3475 + Name: Konotop + CountryCode: UKR + District: Sumy + Population: 96000 + - ID: 3476 + Name: Kostjantynivka + CountryCode: UKR + District: Donetsk + Population: 95000 + - ID: 3477 + Name: Berdytšiv + CountryCode: UKR + District: Zytomyr + Population: 90000 + - ID: 3478 + Name: Izmajil + CountryCode: UKR + District: Odesa + Population: 90000 + - ID: 3479 + Name: Šostka + CountryCode: UKR + District: Sumy + Population: 90000 + - ID: 3480 + Name: Uman + CountryCode: UKR + District: Tšerkasy + Population: 90000 + - ID: 3481 + Name: Brovary + CountryCode: UKR + District: Kiova + Population: 89000 + - ID: 3482 + Name: Mukatševe + CountryCode: UKR + District: Taka-Karpatia + Population: 89000 + - ID: 3483 + Name: Budapest + CountryCode: HUN + District: Budapest + Population: 1811552 + - ID: 3484 + Name: Debrecen + CountryCode: HUN + District: Hajdú-Bihar + Population: 203648 + - ID: 3485 + Name: Miskolc + CountryCode: HUN + District: Borsod-Abaúj-Zemplén + Population: 172357 + - ID: 3486 + Name: Szeged + CountryCode: HUN + District: Csongrád + Population: 158158 + - ID: 3487 + Name: Pécs + CountryCode: HUN + District: Baranya + Population: 157332 + - ID: 3488 + Name: Györ + CountryCode: HUN + District: Györ-Moson-Sopron + Population: 127119 + - ID: 3489 + Name: Nyiregyháza + CountryCode: HUN + District: Szabolcs-Szatmár-Ber + Population: 112419 + - ID: 3490 + Name: Kecskemét + CountryCode: HUN + District: Bács-Kiskun + Population: 105606 + - ID: 3491 + Name: Székesfehérvár + CountryCode: HUN + District: Fejér + Population: 105119 + - ID: 3492 + Name: Montevideo + CountryCode: URY + District: Montevideo + Population: 1236000 + - ID: 3493 + Name: Nouméa + CountryCode: NCL + District: – + Population: 76293 + - ID: 3494 + Name: Auckland + CountryCode: NZL + District: Auckland + Population: 381800 + - ID: 3495 + Name: Christchurch + CountryCode: NZL + District: Canterbury + Population: 324200 + - ID: 3496 + Name: Manukau + CountryCode: NZL + District: Auckland + Population: 281800 + - ID: 3497 + Name: North Shore + CountryCode: NZL + District: Auckland + Population: 187700 + - ID: 3498 + Name: Waitakere + CountryCode: NZL + District: Auckland + Population: 170600 + - ID: 3499 + Name: Wellington + CountryCode: NZL + District: Wellington + Population: 166700 + - ID: 3500 + Name: Dunedin + CountryCode: NZL + District: Dunedin + Population: 119600 + - ID: 3501 + Name: Hamilton + CountryCode: NZL + District: Hamilton + Population: 117100 + - ID: 3502 + Name: Lower Hutt + CountryCode: NZL + District: Wellington + Population: 98100 + - ID: 3503 + Name: Toskent + CountryCode: UZB + District: Toskent Shahri + Population: 2117500 + - ID: 3504 + Name: Namangan + CountryCode: UZB + District: Namangan + Population: 370500 + - ID: 3505 + Name: Samarkand + CountryCode: UZB + District: Samarkand + Population: 361800 + - ID: 3506 + Name: Andijon + CountryCode: UZB + District: Andijon + Population: 318600 + - ID: 3507 + Name: Buhoro + CountryCode: UZB + District: Buhoro + Population: 237100 + - ID: 3508 + Name: Karsi + CountryCode: UZB + District: Qashqadaryo + Population: 194100 + - ID: 3509 + Name: Nukus + CountryCode: UZB + District: Karakalpakistan + Population: 194100 + - ID: 3510 + Name: Kükon + CountryCode: UZB + District: Fargona + Population: 190100 + - ID: 3511 + Name: Fargona + CountryCode: UZB + District: Fargona + Population: 180500 + - ID: 3512 + Name: Circik + CountryCode: UZB + District: Toskent + Population: 146400 + - ID: 3513 + Name: Margilon + CountryCode: UZB + District: Fargona + Population: 140800 + - ID: 3514 + Name: Ürgenc + CountryCode: UZB + District: Khorazm + Population: 138900 + - ID: 3515 + Name: Angren + CountryCode: UZB + District: Toskent + Population: 128000 + - ID: 3516 + Name: Cizah + CountryCode: UZB + District: Cizah + Population: 124800 + - ID: 3517 + Name: Navoi + CountryCode: UZB + District: Navoi + Population: 116300 + - ID: 3518 + Name: Olmalik + CountryCode: UZB + District: Toskent + Population: 114900 + - ID: 3519 + Name: Termiz + CountryCode: UZB + District: Surkhondaryo + Population: 109500 + - ID: 3520 + Name: Minsk + CountryCode: BLR + District: Horad Minsk + Population: 1674000 + - ID: 3521 + Name: Gomel + CountryCode: BLR + District: Gomel + Population: 475000 + - ID: 3522 + Name: Mogiljov + CountryCode: BLR + District: Mogiljov + Population: 356000 + - ID: 3523 + Name: Vitebsk + CountryCode: BLR + District: Vitebsk + Population: 340000 + - ID: 3524 + Name: Grodno + CountryCode: BLR + District: Grodno + Population: 302000 + - ID: 3525 + Name: Brest + CountryCode: BLR + District: Brest + Population: 286000 + - ID: 3526 + Name: Bobruisk + CountryCode: BLR + District: Mogiljov + Population: 221000 + - ID: 3527 + Name: Baranovitši + CountryCode: BLR + District: Brest + Population: 167000 + - ID: 3528 + Name: Borisov + CountryCode: BLR + District: Minsk + Population: 151000 + - ID: 3529 + Name: Pinsk + CountryCode: BLR + District: Brest + Population: 130000 + - ID: 3530 + Name: Orša + CountryCode: BLR + District: Vitebsk + Population: 124000 + - ID: 3531 + Name: Mozyr + CountryCode: BLR + District: Gomel + Population: 110000 + - ID: 3532 + Name: Novopolotsk + CountryCode: BLR + District: Vitebsk + Population: 106000 + - ID: 3533 + Name: Lida + CountryCode: BLR + District: Grodno + Population: 101000 + - ID: 3534 + Name: Soligorsk + CountryCode: BLR + District: Minsk + Population: 101000 + - ID: 3535 + Name: Molodetšno + CountryCode: BLR + District: Minsk + Population: 97000 + - ID: 3536 + Name: Mata-Utu + CountryCode: WLF + District: Wallis + Population: 1137 + - ID: 3537 + Name: Port-Vila + CountryCode: VUT + District: Shefa + Population: 33700 + - ID: 3538 + Name: Città del Vaticano + CountryCode: VAT + District: – + Population: 455 + - ID: 3539 + Name: Caracas + CountryCode: VEN + District: Distrito Federal + Population: 1975294 + - ID: 3540 + Name: Maracaíbo + CountryCode: VEN + District: Zulia + Population: 1304776 + - ID: 3541 + Name: Barquisimeto + CountryCode: VEN + District: Lara + Population: 877239 + - ID: 3542 + Name: Valencia + CountryCode: VEN + District: Carabobo + Population: 794246 + - ID: 3543 + Name: Ciudad Guayana + CountryCode: VEN + District: Bolívar + Population: 663713 + - ID: 3544 + Name: Petare + CountryCode: VEN + District: Miranda + Population: 488868 + - ID: 3545 + Name: Maracay + CountryCode: VEN + District: Aragua + Population: 444443 + - ID: 3546 + Name: Barcelona + CountryCode: VEN + District: Anzoátegui + Population: 322267 + - ID: 3547 + Name: Maturín + CountryCode: VEN + District: Monagas + Population: 319726 + - ID: 3548 + Name: San Cristóbal + CountryCode: VEN + District: Táchira + Population: 319373 + - ID: 3549 + Name: Ciudad Bolívar + CountryCode: VEN + District: Bolívar + Population: 301107 + - ID: 3550 + Name: Cumaná + CountryCode: VEN + District: Sucre + Population: 293105 + - ID: 3551 + Name: Mérida + CountryCode: VEN + District: Mérida + Population: 224887 + - ID: 3552 + Name: Cabimas + CountryCode: VEN + District: Zulia + Population: 221329 + - ID: 3553 + Name: Barinas + CountryCode: VEN + District: Barinas + Population: 217831 + - ID: 3554 + Name: Turmero + CountryCode: VEN + District: Aragua + Population: 217499 + - ID: 3555 + Name: Baruta + CountryCode: VEN + District: Miranda + Population: 207290 + - ID: 3556 + Name: Puerto Cabello + CountryCode: VEN + District: Carabobo + Population: 187722 + - ID: 3557 + Name: Santa Ana de Coro + CountryCode: VEN + District: Falcón + Population: 185766 + - ID: 3558 + Name: Los Teques + CountryCode: VEN + District: Miranda + Population: 178784 + - ID: 3559 + Name: Punto Fijo + CountryCode: VEN + District: Falcón + Population: 167215 + - ID: 3560 + Name: Guarenas + CountryCode: VEN + District: Miranda + Population: 165889 + - ID: 3561 + Name: Acarigua + CountryCode: VEN + District: Portuguesa + Population: 158954 + - ID: 3562 + Name: Puerto La Cruz + CountryCode: VEN + District: Anzoátegui + Population: 155700 + - ID: 3563 + Name: Ciudad Losada + CountryCode: VEN + District: '' + Population: 134501 + - ID: 3564 + Name: Guacara + CountryCode: VEN + District: Carabobo + Population: 131334 + - ID: 3565 + Name: Valera + CountryCode: VEN + District: Trujillo + Population: 130281 + - ID: 3566 + Name: Guanare + CountryCode: VEN + District: Portuguesa + Population: 125621 + - ID: 3567 + Name: Carúpano + CountryCode: VEN + District: Sucre + Population: 119639 + - ID: 3568 + Name: Catia La Mar + CountryCode: VEN + District: Distrito Federal + Population: 117012 + - ID: 3569 + Name: El Tigre + CountryCode: VEN + District: Anzoátegui + Population: 116256 + - ID: 3570 + Name: Guatire + CountryCode: VEN + District: Miranda + Population: 109121 + - ID: 3571 + Name: Calabozo + CountryCode: VEN + District: Guárico + Population: 107146 + - ID: 3572 + Name: Pozuelos + CountryCode: VEN + District: Anzoátegui + Population: 105690 + - ID: 3573 + Name: Ciudad Ojeda + CountryCode: VEN + District: Zulia + Population: 99354 + - ID: 3574 + Name: Ocumare del Tuy + CountryCode: VEN + District: Miranda + Population: 97168 + - ID: 3575 + Name: Valle de la Pascua + CountryCode: VEN + District: Guárico + Population: 95927 + - ID: 3576 + Name: Araure + CountryCode: VEN + District: Portuguesa + Population: 94269 + - ID: 3577 + Name: San Fernando de Apure + CountryCode: VEN + District: Apure + Population: 93809 + - ID: 3578 + Name: San Felipe + CountryCode: VEN + District: Yaracuy + Population: 90940 + - ID: 3579 + Name: El Limón + CountryCode: VEN + District: Aragua + Population: 90000 + - ID: 3580 + Name: Moscow + CountryCode: RUS + District: Moscow (City) + Population: 8389200 + - ID: 3581 + Name: St Petersburg + CountryCode: RUS + District: Pietari + Population: 4694000 + - ID: 3582 + Name: Novosibirsk + CountryCode: RUS + District: Novosibirsk + Population: 1398800 + - ID: 3583 + Name: Nizni Novgorod + CountryCode: RUS + District: Nizni Novgorod + Population: 1357000 + - ID: 3584 + Name: Jekaterinburg + CountryCode: RUS + District: Sverdlovsk + Population: 1266300 + - ID: 3585 + Name: Samara + CountryCode: RUS + District: Samara + Population: 1156100 + - ID: 3586 + Name: Omsk + CountryCode: RUS + District: Omsk + Population: 1148900 + - ID: 3587 + Name: Kazan + CountryCode: RUS + District: Tatarstan + Population: 1101000 + - ID: 3588 + Name: Ufa + CountryCode: RUS + District: Baškortostan + Population: 1091200 + - ID: 3589 + Name: Tšeljabinsk + CountryCode: RUS + District: Tšeljabinsk + Population: 1083200 + - ID: 3590 + Name: Rostov-na-Donu + CountryCode: RUS + District: Rostov-na-Donu + Population: 1012700 + - ID: 3591 + Name: Perm + CountryCode: RUS + District: Perm + Population: 1009700 + - ID: 3592 + Name: Volgograd + CountryCode: RUS + District: Volgograd + Population: 993400 + - ID: 3593 + Name: Voronez + CountryCode: RUS + District: Voronez + Population: 907700 + - ID: 3594 + Name: Krasnojarsk + CountryCode: RUS + District: Krasnojarsk + Population: 875500 + - ID: 3595 + Name: Saratov + CountryCode: RUS + District: Saratov + Population: 874000 + - ID: 3596 + Name: Toljatti + CountryCode: RUS + District: Samara + Population: 722900 + - ID: 3597 + Name: Uljanovsk + CountryCode: RUS + District: Uljanovsk + Population: 667400 + - ID: 3598 + Name: Izevsk + CountryCode: RUS + District: Udmurtia + Population: 652800 + - ID: 3599 + Name: Krasnodar + CountryCode: RUS + District: Krasnodar + Population: 639000 + - ID: 3600 + Name: Jaroslavl + CountryCode: RUS + District: Jaroslavl + Population: 616700 + - ID: 3601 + Name: Habarovsk + CountryCode: RUS + District: Habarovsk + Population: 609400 + - ID: 3602 + Name: Vladivostok + CountryCode: RUS + District: Primorje + Population: 606200 + - ID: 3603 + Name: Irkutsk + CountryCode: RUS + District: Irkutsk + Population: 593700 + - ID: 3604 + Name: Barnaul + CountryCode: RUS + District: Altai + Population: 580100 + - ID: 3605 + Name: Novokuznetsk + CountryCode: RUS + District: Kemerovo + Population: 561600 + - ID: 3606 + Name: Penza + CountryCode: RUS + District: Penza + Population: 532200 + - ID: 3607 + Name: Rjazan + CountryCode: RUS + District: Rjazan + Population: 529900 + - ID: 3608 + Name: Orenburg + CountryCode: RUS + District: Orenburg + Population: 523600 + - ID: 3609 + Name: Lipetsk + CountryCode: RUS + District: Lipetsk + Population: 521000 + - ID: 3610 + Name: Nabereznyje Tšelny + CountryCode: RUS + District: Tatarstan + Population: 514700 + - ID: 3611 + Name: Tula + CountryCode: RUS + District: Tula + Population: 506100 + - ID: 3612 + Name: Tjumen + CountryCode: RUS + District: Tjumen + Population: 503400 + - ID: 3613 + Name: Kemerovo + CountryCode: RUS + District: Kemerovo + Population: 492700 + - ID: 3614 + Name: Astrahan + CountryCode: RUS + District: Astrahan + Population: 486100 + - ID: 3615 + Name: Tomsk + CountryCode: RUS + District: Tomsk + Population: 482100 + - ID: 3616 + Name: Kirov + CountryCode: RUS + District: Kirov + Population: 466200 + - ID: 3617 + Name: Ivanovo + CountryCode: RUS + District: Ivanovo + Population: 459200 + - ID: 3618 + Name: Tšeboksary + CountryCode: RUS + District: Tšuvassia + Population: 459200 + - ID: 3619 + Name: Brjansk + CountryCode: RUS + District: Brjansk + Population: 457400 + - ID: 3620 + Name: Tver + CountryCode: RUS + District: Tver + Population: 454900 + - ID: 3621 + Name: Kursk + CountryCode: RUS + District: Kursk + Population: 443500 + - ID: 3622 + Name: Magnitogorsk + CountryCode: RUS + District: Tšeljabinsk + Population: 427900 + - ID: 3623 + Name: Kaliningrad + CountryCode: RUS + District: Kaliningrad + Population: 424400 + - ID: 3624 + Name: Nizni Tagil + CountryCode: RUS + District: Sverdlovsk + Population: 390900 + - ID: 3625 + Name: Murmansk + CountryCode: RUS + District: Murmansk + Population: 376300 + - ID: 3626 + Name: Ulan-Ude + CountryCode: RUS + District: Burjatia + Population: 370400 + - ID: 3627 + Name: Kurgan + CountryCode: RUS + District: Kurgan + Population: 364700 + - ID: 3628 + Name: Arkangeli + CountryCode: RUS + District: Arkangeli + Population: 361800 + - ID: 3629 + Name: Sotši + CountryCode: RUS + District: Krasnodar + Population: 358600 + - ID: 3630 + Name: Smolensk + CountryCode: RUS + District: Smolensk + Population: 353400 + - ID: 3631 + Name: Orjol + CountryCode: RUS + District: Orjol + Population: 344500 + - ID: 3632 + Name: Stavropol + CountryCode: RUS + District: Stavropol + Population: 343300 + - ID: 3633 + Name: Belgorod + CountryCode: RUS + District: Belgorod + Population: 342000 + - ID: 3634 + Name: Kaluga + CountryCode: RUS + District: Kaluga + Population: 339300 + - ID: 3635 + Name: Vladimir + CountryCode: RUS + District: Vladimir + Population: 337100 + - ID: 3636 + Name: Mahatškala + CountryCode: RUS + District: Dagestan + Population: 332800 + - ID: 3637 + Name: Tšerepovets + CountryCode: RUS + District: Vologda + Population: 324400 + - ID: 3638 + Name: Saransk + CountryCode: RUS + District: Mordva + Population: 314800 + - ID: 3639 + Name: Tambov + CountryCode: RUS + District: Tambov + Population: 312000 + - ID: 3640 + Name: Vladikavkaz + CountryCode: RUS + District: North Ossetia-Alania + Population: 310100 + - ID: 3641 + Name: Tšita + CountryCode: RUS + District: Tšita + Population: 309900 + - ID: 3642 + Name: Vologda + CountryCode: RUS + District: Vologda + Population: 302500 + - ID: 3643 + Name: Veliki Novgorod + CountryCode: RUS + District: Novgorod + Population: 299500 + - ID: 3644 + Name: Komsomolsk-na-Amure + CountryCode: RUS + District: Habarovsk + Population: 291600 + - ID: 3645 + Name: Kostroma + CountryCode: RUS + District: Kostroma + Population: 288100 + - ID: 3646 + Name: Volzski + CountryCode: RUS + District: Volgograd + Population: 286900 + - ID: 3647 + Name: Taganrog + CountryCode: RUS + District: Rostov-na-Donu + Population: 284400 + - ID: 3648 + Name: Petroskoi + CountryCode: RUS + District: Karjala + Population: 282100 + - ID: 3649 + Name: Bratsk + CountryCode: RUS + District: Irkutsk + Population: 277600 + - ID: 3650 + Name: Dzerzinsk + CountryCode: RUS + District: Nizni Novgorod + Population: 277100 + - ID: 3651 + Name: Surgut + CountryCode: RUS + District: Hanti-Mansia + Population: 274900 + - ID: 3652 + Name: Orsk + CountryCode: RUS + District: Orenburg + Population: 273900 + - ID: 3653 + Name: Sterlitamak + CountryCode: RUS + District: Baškortostan + Population: 265200 + - ID: 3654 + Name: Angarsk + CountryCode: RUS + District: Irkutsk + Population: 264700 + - ID: 3655 + Name: Joškar-Ola + CountryCode: RUS + District: Marinmaa + Population: 249200 + - ID: 3656 + Name: Rybinsk + CountryCode: RUS + District: Jaroslavl + Population: 239600 + - ID: 3657 + Name: Prokopjevsk + CountryCode: RUS + District: Kemerovo + Population: 237300 + - ID: 3658 + Name: Niznevartovsk + CountryCode: RUS + District: Hanti-Mansia + Population: 233900 + - ID: 3659 + Name: Naltšik + CountryCode: RUS + District: Kabardi-Balkaria + Population: 233400 + - ID: 3660 + Name: Syktyvkar + CountryCode: RUS + District: Komi + Population: 229700 + - ID: 3661 + Name: Severodvinsk + CountryCode: RUS + District: Arkangeli + Population: 229300 + - ID: 3662 + Name: Bijsk + CountryCode: RUS + District: Altai + Population: 225000 + - ID: 3663 + Name: Niznekamsk + CountryCode: RUS + District: Tatarstan + Population: 223400 + - ID: 3664 + Name: Blagoveštšensk + CountryCode: RUS + District: Amur + Population: 222000 + - ID: 3665 + Name: Šahty + CountryCode: RUS + District: Rostov-na-Donu + Population: 221800 + - ID: 3666 + Name: Staryi Oskol + CountryCode: RUS + District: Belgorod + Population: 213800 + - ID: 3667 + Name: Zelenograd + CountryCode: RUS + District: Moscow (City) + Population: 207100 + - ID: 3668 + Name: Balakovo + CountryCode: RUS + District: Saratov + Population: 206000 + - ID: 3669 + Name: Novorossijsk + CountryCode: RUS + District: Krasnodar + Population: 203300 + - ID: 3670 + Name: Pihkova + CountryCode: RUS + District: Pihkova + Population: 201500 + - ID: 3671 + Name: Zlatoust + CountryCode: RUS + District: Tšeljabinsk + Population: 196900 + - ID: 3672 + Name: Jakutsk + CountryCode: RUS + District: Saha (Jakutia) + Population: 195400 + - ID: 3673 + Name: Podolsk + CountryCode: RUS + District: Moskova + Population: 194300 + - ID: 3674 + Name: Petropavlovsk-Kamtšatski + CountryCode: RUS + District: Kamtšatka + Population: 194100 + - ID: 3675 + Name: Kamensk-Uralski + CountryCode: RUS + District: Sverdlovsk + Population: 190600 + - ID: 3676 + Name: Engels + CountryCode: RUS + District: Saratov + Population: 189000 + - ID: 3677 + Name: Syzran + CountryCode: RUS + District: Samara + Population: 186900 + - ID: 3678 + Name: Grozny + CountryCode: RUS + District: Tšetšenia + Population: 186000 + - ID: 3679 + Name: Novotšerkassk + CountryCode: RUS + District: Rostov-na-Donu + Population: 184400 + - ID: 3680 + Name: Berezniki + CountryCode: RUS + District: Perm + Population: 181900 + - ID: 3681 + Name: Juzno-Sahalinsk + CountryCode: RUS + District: Sahalin + Population: 179200 + - ID: 3682 + Name: Volgodonsk + CountryCode: RUS + District: Rostov-na-Donu + Population: 178200 + - ID: 3683 + Name: Abakan + CountryCode: RUS + District: Hakassia + Population: 169200 + - ID: 3684 + Name: Maikop + CountryCode: RUS + District: Adygea + Population: 167300 + - ID: 3685 + Name: Miass + CountryCode: RUS + District: Tšeljabinsk + Population: 166200 + - ID: 3686 + Name: Armavir + CountryCode: RUS + District: Krasnodar + Population: 164900 + - ID: 3687 + Name: Ljubertsy + CountryCode: RUS + District: Moskova + Population: 163900 + - ID: 3688 + Name: Rubtsovsk + CountryCode: RUS + District: Altai + Population: 162600 + - ID: 3689 + Name: Kovrov + CountryCode: RUS + District: Vladimir + Population: 159900 + - ID: 3690 + Name: Nahodka + CountryCode: RUS + District: Primorje + Population: 157700 + - ID: 3691 + Name: Ussurijsk + CountryCode: RUS + District: Primorje + Population: 157300 + - ID: 3692 + Name: Salavat + CountryCode: RUS + District: Baškortostan + Population: 156800 + - ID: 3693 + Name: Mytištši + CountryCode: RUS + District: Moskova + Population: 155700 + - ID: 3694 + Name: Kolomna + CountryCode: RUS + District: Moskova + Population: 150700 + - ID: 3695 + Name: Elektrostal + CountryCode: RUS + District: Moskova + Population: 147000 + - ID: 3696 + Name: Murom + CountryCode: RUS + District: Vladimir + Population: 142400 + - ID: 3697 + Name: Kolpino + CountryCode: RUS + District: Pietari + Population: 141200 + - ID: 3698 + Name: Norilsk + CountryCode: RUS + District: Krasnojarsk + Population: 140800 + - ID: 3699 + Name: Almetjevsk + CountryCode: RUS + District: Tatarstan + Population: 140700 + - ID: 3700 + Name: Novomoskovsk + CountryCode: RUS + District: Tula + Population: 138100 + - ID: 3701 + Name: Dimitrovgrad + CountryCode: RUS + District: Uljanovsk + Population: 137000 + - ID: 3702 + Name: Pervouralsk + CountryCode: RUS + District: Sverdlovsk + Population: 136100 + - ID: 3703 + Name: Himki + CountryCode: RUS + District: Moskova + Population: 133700 + - ID: 3704 + Name: Balašiha + CountryCode: RUS + District: Moskova + Population: 132900 + - ID: 3705 + Name: Nevinnomyssk + CountryCode: RUS + District: Stavropol + Population: 132600 + - ID: 3706 + Name: Pjatigorsk + CountryCode: RUS + District: Stavropol + Population: 132500 + - ID: 3707 + Name: Korolev + CountryCode: RUS + District: Moskova + Population: 132400 + - ID: 3708 + Name: Serpuhov + CountryCode: RUS + District: Moskova + Population: 132000 + - ID: 3709 + Name: Odintsovo + CountryCode: RUS + District: Moskova + Population: 127400 + - ID: 3710 + Name: Orehovo-Zujevo + CountryCode: RUS + District: Moskova + Population: 124900 + - ID: 3711 + Name: Kamyšin + CountryCode: RUS + District: Volgograd + Population: 124600 + - ID: 3712 + Name: Novotšeboksarsk + CountryCode: RUS + District: Tšuvassia + Population: 123400 + - ID: 3713 + Name: Tšerkessk + CountryCode: RUS + District: Karatšai-Tšerkessia + Population: 121700 + - ID: 3714 + Name: Atšinsk + CountryCode: RUS + District: Krasnojarsk + Population: 121600 + - ID: 3715 + Name: Magadan + CountryCode: RUS + District: Magadan + Population: 121000 + - ID: 3716 + Name: Mitšurinsk + CountryCode: RUS + District: Tambov + Population: 120700 + - ID: 3717 + Name: Kislovodsk + CountryCode: RUS + District: Stavropol + Population: 120400 + - ID: 3718 + Name: Jelets + CountryCode: RUS + District: Lipetsk + Population: 119400 + - ID: 3719 + Name: Seversk + CountryCode: RUS + District: Tomsk + Population: 118600 + - ID: 3720 + Name: Noginsk + CountryCode: RUS + District: Moskova + Population: 117200 + - ID: 3721 + Name: Velikije Luki + CountryCode: RUS + District: Pihkova + Population: 116300 + - ID: 3722 + Name: Novokuibyševsk + CountryCode: RUS + District: Samara + Population: 116200 + - ID: 3723 + Name: Neftekamsk + CountryCode: RUS + District: Baškortostan + Population: 115700 + - ID: 3724 + Name: Leninsk-Kuznetski + CountryCode: RUS + District: Kemerovo + Population: 113800 + - ID: 3725 + Name: Oktjabrski + CountryCode: RUS + District: Baškortostan + Population: 111500 + - ID: 3726 + Name: Sergijev Posad + CountryCode: RUS + District: Moskova + Population: 111100 + - ID: 3727 + Name: Arzamas + CountryCode: RUS + District: Nizni Novgorod + Population: 110700 + - ID: 3728 + Name: Kiseljovsk + CountryCode: RUS + District: Kemerovo + Population: 110000 + - ID: 3729 + Name: Novotroitsk + CountryCode: RUS + District: Orenburg + Population: 109600 + - ID: 3730 + Name: Obninsk + CountryCode: RUS + District: Kaluga + Population: 108300 + - ID: 3731 + Name: Kansk + CountryCode: RUS + District: Krasnojarsk + Population: 107400 + - ID: 3732 + Name: Glazov + CountryCode: RUS + District: Udmurtia + Population: 106300 + - ID: 3733 + Name: Solikamsk + CountryCode: RUS + District: Perm + Population: 106000 + - ID: 3734 + Name: Sarapul + CountryCode: RUS + District: Udmurtia + Population: 105700 + - ID: 3735 + Name: Ust-Ilimsk + CountryCode: RUS + District: Irkutsk + Population: 105200 + - ID: 3736 + Name: Štšolkovo + CountryCode: RUS + District: Moskova + Population: 104900 + - ID: 3737 + Name: Mezduretšensk + CountryCode: RUS + District: Kemerovo + Population: 104400 + - ID: 3738 + Name: Usolje-Sibirskoje + CountryCode: RUS + District: Irkutsk + Population: 103500 + - ID: 3739 + Name: Elista + CountryCode: RUS + District: Kalmykia + Population: 103300 + - ID: 3740 + Name: Novošahtinsk + CountryCode: RUS + District: Rostov-na-Donu + Population: 101900 + - ID: 3741 + Name: Votkinsk + CountryCode: RUS + District: Udmurtia + Population: 101700 + - ID: 3742 + Name: Kyzyl + CountryCode: RUS + District: Tyva + Population: 101100 + - ID: 3743 + Name: Serov + CountryCode: RUS + District: Sverdlovsk + Population: 100400 + - ID: 3744 + Name: Zelenodolsk + CountryCode: RUS + District: Tatarstan + Population: 100200 + - ID: 3745 + Name: Zeleznodoroznyi + CountryCode: RUS + District: Moskova + Population: 100100 + - ID: 3746 + Name: Kinešma + CountryCode: RUS + District: Ivanovo + Population: 100000 + - ID: 3747 + Name: Kuznetsk + CountryCode: RUS + District: Penza + Population: 98200 + - ID: 3748 + Name: Uhta + CountryCode: RUS + District: Komi + Population: 98000 + - ID: 3749 + Name: Jessentuki + CountryCode: RUS + District: Stavropol + Population: 97900 + - ID: 3750 + Name: Tobolsk + CountryCode: RUS + District: Tjumen + Population: 97600 + - ID: 3751 + Name: Neftejugansk + CountryCode: RUS + District: Hanti-Mansia + Population: 97400 + - ID: 3752 + Name: Bataisk + CountryCode: RUS + District: Rostov-na-Donu + Population: 97300 + - ID: 3753 + Name: Nojabrsk + CountryCode: RUS + District: Yamalin Nenetsia + Population: 97300 + - ID: 3754 + Name: Balašov + CountryCode: RUS + District: Saratov + Population: 97100 + - ID: 3755 + Name: Zeleznogorsk + CountryCode: RUS + District: Kursk + Population: 96900 + - ID: 3756 + Name: Zukovski + CountryCode: RUS + District: Moskova + Population: 96500 + - ID: 3757 + Name: Anzero-Sudzensk + CountryCode: RUS + District: Kemerovo + Population: 96100 + - ID: 3758 + Name: Bugulma + CountryCode: RUS + District: Tatarstan + Population: 94100 + - ID: 3759 + Name: Zeleznogorsk + CountryCode: RUS + District: Krasnojarsk + Population: 94000 + - ID: 3760 + Name: Novouralsk + CountryCode: RUS + District: Sverdlovsk + Population: 93300 + - ID: 3761 + Name: Puškin + CountryCode: RUS + District: Pietari + Population: 92900 + - ID: 3762 + Name: Vorkuta + CountryCode: RUS + District: Komi + Population: 92600 + - ID: 3763 + Name: Derbent + CountryCode: RUS + District: Dagestan + Population: 92300 + - ID: 3764 + Name: Kirovo-Tšepetsk + CountryCode: RUS + District: Kirov + Population: 91600 + - ID: 3765 + Name: Krasnogorsk + CountryCode: RUS + District: Moskova + Population: 91000 + - ID: 3766 + Name: Klin + CountryCode: RUS + District: Moskova + Population: 90000 + - ID: 3767 + Name: Tšaikovski + CountryCode: RUS + District: Perm + Population: 90000 + - ID: 3768 + Name: Novyi Urengoi + CountryCode: RUS + District: Yamalin Nenetsia + Population: 89800 + - ID: 3769 + Name: Ho Chi Minh City + CountryCode: VNM + District: Ho Chi Minh City + Population: 3980000 + - ID: 3770 + Name: Hanoi + CountryCode: VNM + District: Hanoi + Population: 1410000 + - ID: 3771 + Name: Haiphong + CountryCode: VNM + District: Haiphong + Population: 783133 + - ID: 3772 + Name: Da Nang + CountryCode: VNM + District: Quang Nam-Da Nang + Population: 382674 + - ID: 3773 + Name: Biên Hoa + CountryCode: VNM + District: Dong Nai + Population: 282095 + - ID: 3774 + Name: Nha Trang + CountryCode: VNM + District: Khanh Hoa + Population: 221331 + - ID: 3775 + Name: Hue + CountryCode: VNM + District: Thua Thien-Hue + Population: 219149 + - ID: 3776 + Name: Can Tho + CountryCode: VNM + District: Can Tho + Population: 215587 + - ID: 3777 + Name: Cam Pha + CountryCode: VNM + District: Quang Binh + Population: 209086 + - ID: 3778 + Name: Nam Dinh + CountryCode: VNM + District: Nam Ha + Population: 171699 + - ID: 3779 + Name: Quy Nhon + CountryCode: VNM + District: Binh Dinh + Population: 163385 + - ID: 3780 + Name: Vung Tau + CountryCode: VNM + District: Ba Ria-Vung Tau + Population: 145145 + - ID: 3781 + Name: Rach Gia + CountryCode: VNM + District: Kien Giang + Population: 141132 + - ID: 3782 + Name: Long Xuyen + CountryCode: VNM + District: An Giang + Population: 132681 + - ID: 3783 + Name: Thai Nguyen + CountryCode: VNM + District: Bac Thai + Population: 127643 + - ID: 3784 + Name: Hong Gai + CountryCode: VNM + District: Quang Ninh + Population: 127484 + - ID: 3785 + Name: Phan Thiêt + CountryCode: VNM + District: Binh Thuan + Population: 114236 + - ID: 3786 + Name: Cam Ranh + CountryCode: VNM + District: Khanh Hoa + Population: 114041 + - ID: 3787 + Name: Vinh + CountryCode: VNM + District: Nghe An + Population: 112455 + - ID: 3788 + Name: My Tho + CountryCode: VNM + District: Tien Giang + Population: 108404 + - ID: 3789 + Name: Da Lat + CountryCode: VNM + District: Lam Dong + Population: 106409 + - ID: 3790 + Name: Buon Ma Thuot + CountryCode: VNM + District: Dac Lac + Population: 97044 + - ID: 3791 + Name: Tallinn + CountryCode: EST + District: Harjumaa + Population: 403981 + - ID: 3792 + Name: Tartu + CountryCode: EST + District: Tartumaa + Population: 101246 + - ID: 3793 + Name: New York + CountryCode: USA + District: New York + Population: 8008278 + - ID: 3794 + Name: Los Angeles + CountryCode: USA + District: California + Population: 3694820 + - ID: 3795 + Name: Chicago + CountryCode: USA + District: Illinois + Population: 2896016 + - ID: 3796 + Name: Houston + CountryCode: USA + District: Texas + Population: 1953631 + - ID: 3797 + Name: Philadelphia + CountryCode: USA + District: Pennsylvania + Population: 1517550 + - ID: 3798 + Name: Phoenix + CountryCode: USA + District: Arizona + Population: 1321045 + - ID: 3799 + Name: San Diego + CountryCode: USA + District: California + Population: 1223400 + - ID: 3800 + Name: Dallas + CountryCode: USA + District: Texas + Population: 1188580 + - ID: 3801 + Name: San Antonio + CountryCode: USA + District: Texas + Population: 1144646 + - ID: 3802 + Name: Detroit + CountryCode: USA + District: Michigan + Population: 951270 + - ID: 3803 + Name: San Jose + CountryCode: USA + District: California + Population: 894943 + - ID: 3804 + Name: Indianapolis + CountryCode: USA + District: Indiana + Population: 791926 + - ID: 3805 + Name: San Francisco + CountryCode: USA + District: California + Population: 776733 + - ID: 3806 + Name: Jacksonville + CountryCode: USA + District: Florida + Population: 735167 + - ID: 3807 + Name: Columbus + CountryCode: USA + District: Ohio + Population: 711470 + - ID: 3808 + Name: Austin + CountryCode: USA + District: Texas + Population: 656562 + - ID: 3809 + Name: Baltimore + CountryCode: USA + District: Maryland + Population: 651154 + - ID: 3810 + Name: Memphis + CountryCode: USA + District: Tennessee + Population: 650100 + - ID: 3811 + Name: Milwaukee + CountryCode: USA + District: Wisconsin + Population: 596974 + - ID: 3812 + Name: Boston + CountryCode: USA + District: Massachusetts + Population: 589141 + - ID: 3813 + Name: Washington + CountryCode: USA + District: District of Columbia + Population: 572059 + - ID: 3814 + Name: Nashville-Davidson + CountryCode: USA + District: Tennessee + Population: 569891 + - ID: 3815 + Name: El Paso + CountryCode: USA + District: Texas + Population: 563662 + - ID: 3816 + Name: Seattle + CountryCode: USA + District: Washington + Population: 563374 + - ID: 3817 + Name: Denver + CountryCode: USA + District: Colorado + Population: 554636 + - ID: 3818 + Name: Charlotte + CountryCode: USA + District: North Carolina + Population: 540828 + - ID: 3819 + Name: Fort Worth + CountryCode: USA + District: Texas + Population: 534694 + - ID: 3820 + Name: Portland + CountryCode: USA + District: Oregon + Population: 529121 + - ID: 3821 + Name: Oklahoma City + CountryCode: USA + District: Oklahoma + Population: 506132 + - ID: 3822 + Name: Tucson + CountryCode: USA + District: Arizona + Population: 486699 + - ID: 3823 + Name: New Orleans + CountryCode: USA + District: Louisiana + Population: 484674 + - ID: 3824 + Name: Las Vegas + CountryCode: USA + District: Nevada + Population: 478434 + - ID: 3825 + Name: Cleveland + CountryCode: USA + District: Ohio + Population: 478403 + - ID: 3826 + Name: Long Beach + CountryCode: USA + District: California + Population: 461522 + - ID: 3827 + Name: Albuquerque + CountryCode: USA + District: New Mexico + Population: 448607 + - ID: 3828 + Name: Kansas City + CountryCode: USA + District: Missouri + Population: 441545 + - ID: 3829 + Name: Fresno + CountryCode: USA + District: California + Population: 427652 + - ID: 3830 + Name: Virginia Beach + CountryCode: USA + District: Virginia + Population: 425257 + - ID: 3831 + Name: Atlanta + CountryCode: USA + District: Georgia + Population: 416474 + - ID: 3832 + Name: Sacramento + CountryCode: USA + District: California + Population: 407018 + - ID: 3833 + Name: Oakland + CountryCode: USA + District: California + Population: 399484 + - ID: 3834 + Name: Mesa + CountryCode: USA + District: Arizona + Population: 396375 + - ID: 3835 + Name: Tulsa + CountryCode: USA + District: Oklahoma + Population: 393049 + - ID: 3836 + Name: Omaha + CountryCode: USA + District: Nebraska + Population: 390007 + - ID: 3837 + Name: Minneapolis + CountryCode: USA + District: Minnesota + Population: 382618 + - ID: 3838 + Name: Honolulu + CountryCode: USA + District: Hawaii + Population: 371657 + - ID: 3839 + Name: Miami + CountryCode: USA + District: Florida + Population: 362470 + - ID: 3840 + Name: Colorado Springs + CountryCode: USA + District: Colorado + Population: 360890 + - ID: 3841 + Name: Saint Louis + CountryCode: USA + District: Missouri + Population: 348189 + - ID: 3842 + Name: Wichita + CountryCode: USA + District: Kansas + Population: 344284 + - ID: 3843 + Name: Santa Ana + CountryCode: USA + District: California + Population: 337977 + - ID: 3844 + Name: Pittsburgh + CountryCode: USA + District: Pennsylvania + Population: 334563 + - ID: 3845 + Name: Arlington + CountryCode: USA + District: Texas + Population: 332969 + - ID: 3846 + Name: Cincinnati + CountryCode: USA + District: Ohio + Population: 331285 + - ID: 3847 + Name: Anaheim + CountryCode: USA + District: California + Population: 328014 + - ID: 3848 + Name: Toledo + CountryCode: USA + District: Ohio + Population: 313619 + - ID: 3849 + Name: Tampa + CountryCode: USA + District: Florida + Population: 303447 + - ID: 3850 + Name: Buffalo + CountryCode: USA + District: New York + Population: 292648 + - ID: 3851 + Name: Saint Paul + CountryCode: USA + District: Minnesota + Population: 287151 + - ID: 3852 + Name: Corpus Christi + CountryCode: USA + District: Texas + Population: 277454 + - ID: 3853 + Name: Aurora + CountryCode: USA + District: Colorado + Population: 276393 + - ID: 3854 + Name: Raleigh + CountryCode: USA + District: North Carolina + Population: 276093 + - ID: 3855 + Name: Newark + CountryCode: USA + District: New Jersey + Population: 273546 + - ID: 3856 + Name: Lexington-Fayette + CountryCode: USA + District: Kentucky + Population: 260512 + - ID: 3857 + Name: Anchorage + CountryCode: USA + District: Alaska + Population: 260283 + - ID: 3858 + Name: Louisville + CountryCode: USA + District: Kentucky + Population: 256231 + - ID: 3859 + Name: Riverside + CountryCode: USA + District: California + Population: 255166 + - ID: 3860 + Name: Saint Petersburg + CountryCode: USA + District: Florida + Population: 248232 + - ID: 3861 + Name: Bakersfield + CountryCode: USA + District: California + Population: 247057 + - ID: 3862 + Name: Stockton + CountryCode: USA + District: California + Population: 243771 + - ID: 3863 + Name: Birmingham + CountryCode: USA + District: Alabama + Population: 242820 + - ID: 3864 + Name: Jersey City + CountryCode: USA + District: New Jersey + Population: 240055 + - ID: 3865 + Name: Norfolk + CountryCode: USA + District: Virginia + Population: 234403 + - ID: 3866 + Name: Baton Rouge + CountryCode: USA + District: Louisiana + Population: 227818 + - ID: 3867 + Name: Hialeah + CountryCode: USA + District: Florida + Population: 226419 + - ID: 3868 + Name: Lincoln + CountryCode: USA + District: Nebraska + Population: 225581 + - ID: 3869 + Name: Greensboro + CountryCode: USA + District: North Carolina + Population: 223891 + - ID: 3870 + Name: Plano + CountryCode: USA + District: Texas + Population: 222030 + - ID: 3871 + Name: Rochester + CountryCode: USA + District: New York + Population: 219773 + - ID: 3872 + Name: Glendale + CountryCode: USA + District: Arizona + Population: 218812 + - ID: 3873 + Name: Akron + CountryCode: USA + District: Ohio + Population: 217074 + - ID: 3874 + Name: Garland + CountryCode: USA + District: Texas + Population: 215768 + - ID: 3875 + Name: Madison + CountryCode: USA + District: Wisconsin + Population: 208054 + - ID: 3876 + Name: Fort Wayne + CountryCode: USA + District: Indiana + Population: 205727 + - ID: 3877 + Name: Fremont + CountryCode: USA + District: California + Population: 203413 + - ID: 3878 + Name: Scottsdale + CountryCode: USA + District: Arizona + Population: 202705 + - ID: 3879 + Name: Montgomery + CountryCode: USA + District: Alabama + Population: 201568 + - ID: 3880 + Name: Shreveport + CountryCode: USA + District: Louisiana + Population: 200145 + - ID: 3881 + Name: Augusta-Richmond County + CountryCode: USA + District: Georgia + Population: 199775 + - ID: 3882 + Name: Lubbock + CountryCode: USA + District: Texas + Population: 199564 + - ID: 3883 + Name: Chesapeake + CountryCode: USA + District: Virginia + Population: 199184 + - ID: 3884 + Name: Mobile + CountryCode: USA + District: Alabama + Population: 198915 + - ID: 3885 + Name: Des Moines + CountryCode: USA + District: Iowa + Population: 198682 + - ID: 3886 + Name: Grand Rapids + CountryCode: USA + District: Michigan + Population: 197800 + - ID: 3887 + Name: Richmond + CountryCode: USA + District: Virginia + Population: 197790 + - ID: 3888 + Name: Yonkers + CountryCode: USA + District: New York + Population: 196086 + - ID: 3889 + Name: Spokane + CountryCode: USA + District: Washington + Population: 195629 + - ID: 3890 + Name: Glendale + CountryCode: USA + District: California + Population: 194973 + - ID: 3891 + Name: Tacoma + CountryCode: USA + District: Washington + Population: 193556 + - ID: 3892 + Name: Irving + CountryCode: USA + District: Texas + Population: 191615 + - ID: 3893 + Name: Huntington Beach + CountryCode: USA + District: California + Population: 189594 + - ID: 3894 + Name: Modesto + CountryCode: USA + District: California + Population: 188856 + - ID: 3895 + Name: Durham + CountryCode: USA + District: North Carolina + Population: 187035 + - ID: 3896 + Name: Columbus + CountryCode: USA + District: Georgia + Population: 186291 + - ID: 3897 + Name: Orlando + CountryCode: USA + District: Florida + Population: 185951 + - ID: 3898 + Name: Boise City + CountryCode: USA + District: Idaho + Population: 185787 + - ID: 3899 + Name: Winston-Salem + CountryCode: USA + District: North Carolina + Population: 185776 + - ID: 3900 + Name: San Bernardino + CountryCode: USA + District: California + Population: 185401 + - ID: 3901 + Name: Jackson + CountryCode: USA + District: Mississippi + Population: 184256 + - ID: 3902 + Name: Little Rock + CountryCode: USA + District: Arkansas + Population: 183133 + - ID: 3903 + Name: Salt Lake City + CountryCode: USA + District: Utah + Population: 181743 + - ID: 3904 + Name: Reno + CountryCode: USA + District: Nevada + Population: 180480 + - ID: 3905 + Name: Newport News + CountryCode: USA + District: Virginia + Population: 180150 + - ID: 3906 + Name: Chandler + CountryCode: USA + District: Arizona + Population: 176581 + - ID: 3907 + Name: Laredo + CountryCode: USA + District: Texas + Population: 176576 + - ID: 3908 + Name: Henderson + CountryCode: USA + District: Nevada + Population: 175381 + - ID: 3909 + Name: Arlington + CountryCode: USA + District: Virginia + Population: 174838 + - ID: 3910 + Name: Knoxville + CountryCode: USA + District: Tennessee + Population: 173890 + - ID: 3911 + Name: Amarillo + CountryCode: USA + District: Texas + Population: 173627 + - ID: 3912 + Name: Providence + CountryCode: USA + District: Rhode Island + Population: 173618 + - ID: 3913 + Name: Chula Vista + CountryCode: USA + District: California + Population: 173556 + - ID: 3914 + Name: Worcester + CountryCode: USA + District: Massachusetts + Population: 172648 + - ID: 3915 + Name: Oxnard + CountryCode: USA + District: California + Population: 170358 + - ID: 3916 + Name: Dayton + CountryCode: USA + District: Ohio + Population: 166179 + - ID: 3917 + Name: Garden Grove + CountryCode: USA + District: California + Population: 165196 + - ID: 3918 + Name: Oceanside + CountryCode: USA + District: California + Population: 161029 + - ID: 3919 + Name: Tempe + CountryCode: USA + District: Arizona + Population: 158625 + - ID: 3920 + Name: Huntsville + CountryCode: USA + District: Alabama + Population: 158216 + - ID: 3921 + Name: Ontario + CountryCode: USA + District: California + Population: 158007 + - ID: 3922 + Name: Chattanooga + CountryCode: USA + District: Tennessee + Population: 155554 + - ID: 3923 + Name: Fort Lauderdale + CountryCode: USA + District: Florida + Population: 152397 + - ID: 3924 + Name: Springfield + CountryCode: USA + District: Massachusetts + Population: 152082 + - ID: 3925 + Name: Springfield + CountryCode: USA + District: Missouri + Population: 151580 + - ID: 3926 + Name: Santa Clarita + CountryCode: USA + District: California + Population: 151088 + - ID: 3927 + Name: Salinas + CountryCode: USA + District: California + Population: 151060 + - ID: 3928 + Name: Tallahassee + CountryCode: USA + District: Florida + Population: 150624 + - ID: 3929 + Name: Rockford + CountryCode: USA + District: Illinois + Population: 150115 + - ID: 3930 + Name: Pomona + CountryCode: USA + District: California + Population: 149473 + - ID: 3931 + Name: Metairie + CountryCode: USA + District: Louisiana + Population: 149428 + - ID: 3932 + Name: Paterson + CountryCode: USA + District: New Jersey + Population: 149222 + - ID: 3933 + Name: Overland Park + CountryCode: USA + District: Kansas + Population: 149080 + - ID: 3934 + Name: Santa Rosa + CountryCode: USA + District: California + Population: 147595 + - ID: 3935 + Name: Syracuse + CountryCode: USA + District: New York + Population: 147306 + - ID: 3936 + Name: Kansas City + CountryCode: USA + District: Kansas + Population: 146866 + - ID: 3937 + Name: Hampton + CountryCode: USA + District: Virginia + Population: 146437 + - ID: 3938 + Name: Lakewood + CountryCode: USA + District: Colorado + Population: 144126 + - ID: 3939 + Name: Vancouver + CountryCode: USA + District: Washington + Population: 143560 + - ID: 3940 + Name: Irvine + CountryCode: USA + District: California + Population: 143072 + - ID: 3941 + Name: Aurora + CountryCode: USA + District: Illinois + Population: 142990 + - ID: 3942 + Name: Moreno Valley + CountryCode: USA + District: California + Population: 142381 + - ID: 3943 + Name: Pasadena + CountryCode: USA + District: California + Population: 141674 + - ID: 3944 + Name: Hayward + CountryCode: USA + District: California + Population: 140030 + - ID: 3945 + Name: Brownsville + CountryCode: USA + District: Texas + Population: 139722 + - ID: 3946 + Name: Bridgeport + CountryCode: USA + District: Connecticut + Population: 139529 + - ID: 3947 + Name: Hollywood + CountryCode: USA + District: Florida + Population: 139357 + - ID: 3948 + Name: Warren + CountryCode: USA + District: Michigan + Population: 138247 + - ID: 3949 + Name: Torrance + CountryCode: USA + District: California + Population: 137946 + - ID: 3950 + Name: Eugene + CountryCode: USA + District: Oregon + Population: 137893 + - ID: 3951 + Name: Pembroke Pines + CountryCode: USA + District: Florida + Population: 137427 + - ID: 3952 + Name: Salem + CountryCode: USA + District: Oregon + Population: 136924 + - ID: 3953 + Name: Pasadena + CountryCode: USA + District: Texas + Population: 133936 + - ID: 3954 + Name: Escondido + CountryCode: USA + District: California + Population: 133559 + - ID: 3955 + Name: Sunnyvale + CountryCode: USA + District: California + Population: 131760 + - ID: 3956 + Name: Savannah + CountryCode: USA + District: Georgia + Population: 131510 + - ID: 3957 + Name: Fontana + CountryCode: USA + District: California + Population: 128929 + - ID: 3958 + Name: Orange + CountryCode: USA + District: California + Population: 128821 + - ID: 3959 + Name: Naperville + CountryCode: USA + District: Illinois + Population: 128358 + - ID: 3960 + Name: Alexandria + CountryCode: USA + District: Virginia + Population: 128283 + - ID: 3961 + Name: Rancho Cucamonga + CountryCode: USA + District: California + Population: 127743 + - ID: 3962 + Name: Grand Prairie + CountryCode: USA + District: Texas + Population: 127427 + - ID: 3963 + Name: East Los Angeles + CountryCode: USA + District: California + Population: 126379 + - ID: 3964 + Name: Fullerton + CountryCode: USA + District: California + Population: 126003 + - ID: 3965 + Name: Corona + CountryCode: USA + District: California + Population: 124966 + - ID: 3966 + Name: Flint + CountryCode: USA + District: Michigan + Population: 124943 + - ID: 3967 + Name: Paradise + CountryCode: USA + District: Nevada + Population: 124682 + - ID: 3968 + Name: Mesquite + CountryCode: USA + District: Texas + Population: 124523 + - ID: 3969 + Name: Sterling Heights + CountryCode: USA + District: Michigan + Population: 124471 + - ID: 3970 + Name: Sioux Falls + CountryCode: USA + District: South Dakota + Population: 123975 + - ID: 3971 + Name: New Haven + CountryCode: USA + District: Connecticut + Population: 123626 + - ID: 3972 + Name: Topeka + CountryCode: USA + District: Kansas + Population: 122377 + - ID: 3973 + Name: Concord + CountryCode: USA + District: California + Population: 121780 + - ID: 3974 + Name: Evansville + CountryCode: USA + District: Indiana + Population: 121582 + - ID: 3975 + Name: Hartford + CountryCode: USA + District: Connecticut + Population: 121578 + - ID: 3976 + Name: Fayetteville + CountryCode: USA + District: North Carolina + Population: 121015 + - ID: 3977 + Name: Cedar Rapids + CountryCode: USA + District: Iowa + Population: 120758 + - ID: 3978 + Name: Elizabeth + CountryCode: USA + District: New Jersey + Population: 120568 + - ID: 3979 + Name: Lansing + CountryCode: USA + District: Michigan + Population: 119128 + - ID: 3980 + Name: Lancaster + CountryCode: USA + District: California + Population: 118718 + - ID: 3981 + Name: Fort Collins + CountryCode: USA + District: Colorado + Population: 118652 + - ID: 3982 + Name: Coral Springs + CountryCode: USA + District: Florida + Population: 117549 + - ID: 3983 + Name: Stamford + CountryCode: USA + District: Connecticut + Population: 117083 + - ID: 3984 + Name: Thousand Oaks + CountryCode: USA + District: California + Population: 117005 + - ID: 3985 + Name: Vallejo + CountryCode: USA + District: California + Population: 116760 + - ID: 3986 + Name: Palmdale + CountryCode: USA + District: California + Population: 116670 + - ID: 3987 + Name: Columbia + CountryCode: USA + District: South Carolina + Population: 116278 + - ID: 3988 + Name: El Monte + CountryCode: USA + District: California + Population: 115965 + - ID: 3989 + Name: Abilene + CountryCode: USA + District: Texas + Population: 115930 + - ID: 3990 + Name: North Las Vegas + CountryCode: USA + District: Nevada + Population: 115488 + - ID: 3991 + Name: Ann Arbor + CountryCode: USA + District: Michigan + Population: 114024 + - ID: 3992 + Name: Beaumont + CountryCode: USA + District: Texas + Population: 113866 + - ID: 3993 + Name: Waco + CountryCode: USA + District: Texas + Population: 113726 + - ID: 3994 + Name: Macon + CountryCode: USA + District: Georgia + Population: 113336 + - ID: 3995 + Name: Independence + CountryCode: USA + District: Missouri + Population: 113288 + - ID: 3996 + Name: Peoria + CountryCode: USA + District: Illinois + Population: 112936 + - ID: 3997 + Name: Inglewood + CountryCode: USA + District: California + Population: 112580 + - ID: 3998 + Name: Springfield + CountryCode: USA + District: Illinois + Population: 111454 + - ID: 3999 + Name: Simi Valley + CountryCode: USA + District: California + Population: 111351 + - ID: 4000 + Name: Lafayette + CountryCode: USA + District: Louisiana + Population: 110257 + - ID: 4001 + Name: Gilbert + CountryCode: USA + District: Arizona + Population: 109697 + - ID: 4002 + Name: Carrollton + CountryCode: USA + District: Texas + Population: 109576 + - ID: 4003 + Name: Bellevue + CountryCode: USA + District: Washington + Population: 109569 + - ID: 4004 + Name: West Valley City + CountryCode: USA + District: Utah + Population: 108896 + - ID: 4005 + Name: Clarksville + CountryCode: USA + District: Tennessee + Population: 108787 + - ID: 4006 + Name: Costa Mesa + CountryCode: USA + District: California + Population: 108724 + - ID: 4007 + Name: Peoria + CountryCode: USA + District: Arizona + Population: 108364 + - ID: 4008 + Name: South Bend + CountryCode: USA + District: Indiana + Population: 107789 + - ID: 4009 + Name: Downey + CountryCode: USA + District: California + Population: 107323 + - ID: 4010 + Name: Waterbury + CountryCode: USA + District: Connecticut + Population: 107271 + - ID: 4011 + Name: Manchester + CountryCode: USA + District: New Hampshire + Population: 107006 + - ID: 4012 + Name: Allentown + CountryCode: USA + District: Pennsylvania + Population: 106632 + - ID: 4013 + Name: McAllen + CountryCode: USA + District: Texas + Population: 106414 + - ID: 4014 + Name: Joliet + CountryCode: USA + District: Illinois + Population: 106221 + - ID: 4015 + Name: Lowell + CountryCode: USA + District: Massachusetts + Population: 105167 + - ID: 4016 + Name: Provo + CountryCode: USA + District: Utah + Population: 105166 + - ID: 4017 + Name: West Covina + CountryCode: USA + District: California + Population: 105080 + - ID: 4018 + Name: Wichita Falls + CountryCode: USA + District: Texas + Population: 104197 + - ID: 4019 + Name: Erie + CountryCode: USA + District: Pennsylvania + Population: 103717 + - ID: 4020 + Name: Daly City + CountryCode: USA + District: California + Population: 103621 + - ID: 4021 + Name: Citrus Heights + CountryCode: USA + District: California + Population: 103455 + - ID: 4022 + Name: Norwalk + CountryCode: USA + District: California + Population: 103298 + - ID: 4023 + Name: Gary + CountryCode: USA + District: Indiana + Population: 102746 + - ID: 4024 + Name: Berkeley + CountryCode: USA + District: California + Population: 102743 + - ID: 4025 + Name: Santa Clara + CountryCode: USA + District: California + Population: 102361 + - ID: 4026 + Name: Green Bay + CountryCode: USA + District: Wisconsin + Population: 102313 + - ID: 4027 + Name: Cape Coral + CountryCode: USA + District: Florida + Population: 102286 + - ID: 4028 + Name: Arvada + CountryCode: USA + District: Colorado + Population: 102153 + - ID: 4029 + Name: Pueblo + CountryCode: USA + District: Colorado + Population: 102121 + - ID: 4030 + Name: Sandy + CountryCode: USA + District: Utah + Population: 101853 + - ID: 4031 + Name: Athens-Clarke County + CountryCode: USA + District: Georgia + Population: 101489 + - ID: 4032 + Name: Cambridge + CountryCode: USA + District: Massachusetts + Population: 101355 + - ID: 4033 + Name: Westminster + CountryCode: USA + District: Colorado + Population: 100940 + - ID: 4034 + Name: San Buenaventura + CountryCode: USA + District: California + Population: 100916 + - ID: 4035 + Name: Portsmouth + CountryCode: USA + District: Virginia + Population: 100565 + - ID: 4036 + Name: Livonia + CountryCode: USA + District: Michigan + Population: 100545 + - ID: 4037 + Name: Burbank + CountryCode: USA + District: California + Population: 100316 + - ID: 4038 + Name: Clearwater + CountryCode: USA + District: Florida + Population: 99936 + - ID: 4039 + Name: Midland + CountryCode: USA + District: Texas + Population: 98293 + - ID: 4040 + Name: Davenport + CountryCode: USA + District: Iowa + Population: 98256 + - ID: 4041 + Name: Mission Viejo + CountryCode: USA + District: California + Population: 98049 + - ID: 4042 + Name: Miami Beach + CountryCode: USA + District: Florida + Population: 97855 + - ID: 4043 + Name: Sunrise Manor + CountryCode: USA + District: Nevada + Population: 95362 + - ID: 4044 + Name: New Bedford + CountryCode: USA + District: Massachusetts + Population: 94780 + - ID: 4045 + Name: El Cajon + CountryCode: USA + District: California + Population: 94578 + - ID: 4046 + Name: Norman + CountryCode: USA + District: Oklahoma + Population: 94193 + - ID: 4047 + Name: Richmond + CountryCode: USA + District: California + Population: 94100 + - ID: 4048 + Name: Albany + CountryCode: USA + District: New York + Population: 93994 + - ID: 4049 + Name: Brockton + CountryCode: USA + District: Massachusetts + Population: 93653 + - ID: 4050 + Name: Roanoke + CountryCode: USA + District: Virginia + Population: 93357 + - ID: 4051 + Name: Billings + CountryCode: USA + District: Montana + Population: 92988 + - ID: 4052 + Name: Compton + CountryCode: USA + District: California + Population: 92864 + - ID: 4053 + Name: Gainesville + CountryCode: USA + District: Florida + Population: 92291 + - ID: 4054 + Name: Fairfield + CountryCode: USA + District: California + Population: 92256 + - ID: 4055 + Name: Arden-Arcade + CountryCode: USA + District: California + Population: 92040 + - ID: 4056 + Name: San Mateo + CountryCode: USA + District: California + Population: 91799 + - ID: 4057 + Name: Visalia + CountryCode: USA + District: California + Population: 91762 + - ID: 4058 + Name: Boulder + CountryCode: USA + District: Colorado + Population: 91238 + - ID: 4059 + Name: Cary + CountryCode: USA + District: North Carolina + Population: 91213 + - ID: 4060 + Name: Santa Monica + CountryCode: USA + District: California + Population: 91084 + - ID: 4061 + Name: Fall River + CountryCode: USA + District: Massachusetts + Population: 90555 + - ID: 4062 + Name: Kenosha + CountryCode: USA + District: Wisconsin + Population: 89447 + - ID: 4063 + Name: Elgin + CountryCode: USA + District: Illinois + Population: 89408 + - ID: 4064 + Name: Odessa + CountryCode: USA + District: Texas + Population: 89293 + - ID: 4065 + Name: Carson + CountryCode: USA + District: California + Population: 89089 + - ID: 4066 + Name: Charleston + CountryCode: USA + District: South Carolina + Population: 89063 + - ID: 4067 + Name: Charlotte Amalie + CountryCode: VIR + District: St Thomas + Population: 13000 + - ID: 4068 + Name: Harare + CountryCode: ZWE + District: Harare + Population: 1410000 + - ID: 4069 + Name: Bulawayo + CountryCode: ZWE + District: Bulawayo + Population: 621742 + - ID: 4070 + Name: Chitungwiza + CountryCode: ZWE + District: Harare + Population: 274912 + - ID: 4071 + Name: Mount Darwin + CountryCode: ZWE + District: Harare + Population: 164362 + - ID: 4072 + Name: Mutare + CountryCode: ZWE + District: Manicaland + Population: 131367 + - ID: 4073 + Name: Gweru + CountryCode: ZWE + District: Midlands + Population: 128037 + - ID: 4074 + Name: Gaza + CountryCode: PSE + District: Gaza + Population: 353632 + - ID: 4075 + Name: Khan Yunis + CountryCode: PSE + District: Khan Yunis + Population: 123175 + - ID: 4076 + Name: Hebron + CountryCode: PSE + District: Hebron + Population: 119401 + - ID: 4077 + Name: Jabaliya + CountryCode: PSE + District: North Gaza + Population: 113901 + - ID: 4078 + Name: Nablus + CountryCode: PSE + District: Nablus + Population: 100231 + - ID: 4079 + Name: Rafah + CountryCode: PSE + District: Rafah + Population: 92020 + - id: country + columns: + - name: Code + type: STRING + mode: required + - name: Name + type: STRING + mode: required + - name: Continent + type: STRING + mode: required + - name: Region + type: STRING + mode: required + - name: SurfaceArea + type: FLOAT + mode: required + - name: IndepYear + type: INTEGER + mode: nullable + - name: Population + type: INTEGER + mode: required + - name: LifeExpectancy + type: FLOAT + mode: nullable + - name: GNP + type: FLOAT + mode: nullable + - name: GNPOld + type: FLOAT + mode: nullable + - name: LocalName + type: STRING + mode: required + - name: GovernmentForm + type: STRING + mode: required + - name: HeadOfState + type: STRING + mode: nullable + - name: Capital + type: INTEGER + mode: nullable + - name: Code2 + type: STRING + mode: required + data: + - Code: ABW + Name: Aruba + Continent: North America + Region: Caribbean + SurfaceArea: 193.0 + IndepYear: null + Population: 103000 + LifeExpectancy: 78.4 + GNP: 828.0 + GNPOld: 793.0 + LocalName: Aruba + GovernmentForm: Nonmetropolitan Territory of The Netherlands + HeadOfState: Beatrix + Capital: 129 + Code2: AW + - Code: AFG + Name: Afghanistan + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 652090.0 + IndepYear: 1919 + Population: 22720000 + LifeExpectancy: 45.9 + GNP: 5976.0 + GNPOld: null + LocalName: Afganistan/Afqanestan + GovernmentForm: Islamic Emirate + HeadOfState: Mohammad Omar + Capital: 1 + Code2: AF + - Code: AGO + Name: Angola + Continent: Africa + Region: Central Africa + SurfaceArea: 1246700.0 + IndepYear: 1975 + Population: 12878000 + LifeExpectancy: 38.3 + GNP: 6648.0 + GNPOld: 7984.0 + LocalName: Angola + GovernmentForm: Republic + HeadOfState: José Eduardo dos Santos + Capital: 56 + Code2: AO + - Code: AIA + Name: Anguilla + Continent: North America + Region: Caribbean + SurfaceArea: 96.0 + IndepYear: null + Population: 8000 + LifeExpectancy: 76.1 + GNP: 63.2 + GNPOld: null + LocalName: Anguilla + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 62 + Code2: AI + - Code: ALB + Name: Albania + Continent: Europe + Region: Southern Europe + SurfaceArea: 28748.0 + IndepYear: 1912 + Population: 3401200 + LifeExpectancy: 71.6 + GNP: 3205.0 + GNPOld: 2500.0 + LocalName: Shqipëria + GovernmentForm: Republic + HeadOfState: Rexhep Mejdani + Capital: 34 + Code2: AL + - Code: AND + Name: Andorra + Continent: Europe + Region: Southern Europe + SurfaceArea: 468.0 + IndepYear: 1278 + Population: 78000 + LifeExpectancy: 83.5 + GNP: 1630.0 + GNPOld: null + LocalName: Andorra + GovernmentForm: Parliamentary Coprincipality + HeadOfState: '' + Capital: 55 + Code2: AD + - Code: ANT + Name: Netherlands Antilles + Continent: North America + Region: Caribbean + SurfaceArea: 800.0 + IndepYear: null + Population: 217000 + LifeExpectancy: 74.7 + GNP: 1941.0 + GNPOld: null + LocalName: Nederlandse Antillen + GovernmentForm: Nonmetropolitan Territory of The Netherlands + HeadOfState: Beatrix + Capital: 33 + Code2: AN + - Code: ARE + Name: United Arab Emirates + Continent: Asia + Region: Middle East + SurfaceArea: 83600.0 + IndepYear: 1971 + Population: 2441000 + LifeExpectancy: 74.1 + GNP: 37966.0 + GNPOld: 36846.0 + LocalName: Al-Imarat al-´Arabiya al-Muttahida + GovernmentForm: Emirate Federation + HeadOfState: Zayid bin Sultan al-Nahayan + Capital: 65 + Code2: AE + - Code: ARG + Name: Argentina + Continent: South America + Region: South America + SurfaceArea: 2780400.0 + IndepYear: 1816 + Population: 37032000 + LifeExpectancy: 75.1 + GNP: 340238.0 + GNPOld: 323310.0 + LocalName: Argentina + GovernmentForm: Federal Republic + HeadOfState: Fernando de la Rúa + Capital: 69 + Code2: AR + - Code: ARM + Name: Armenia + Continent: Asia + Region: Middle East + SurfaceArea: 29800.0 + IndepYear: 1991 + Population: 3520000 + LifeExpectancy: 66.4 + GNP: 1813.0 + GNPOld: 1627.0 + LocalName: Hajastan + GovernmentForm: Republic + HeadOfState: Robert Kotšarjan + Capital: 126 + Code2: AM + - Code: ASM + Name: American Samoa + Continent: Oceania + Region: Polynesia + SurfaceArea: 199.0 + IndepYear: null + Population: 68000 + LifeExpectancy: 75.1 + GNP: 334.0 + GNPOld: null + LocalName: Amerika Samoa + GovernmentForm: US Territory + HeadOfState: George W. Bush + Capital: 54 + Code2: AS + - Code: ATA + Name: Antarctica + Continent: Antarctica + Region: Antarctica + SurfaceArea: 13120000.0 + IndepYear: null + Population: 0 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: – + GovernmentForm: Co-administrated + HeadOfState: '' + Capital: null + Code2: AQ + - Code: ATF + Name: French Southern territories + Continent: Antarctica + Region: Antarctica + SurfaceArea: 7780.0 + IndepYear: null + Population: 0 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Terres australes françaises + GovernmentForm: Nonmetropolitan Territory of France + HeadOfState: Jacques Chirac + Capital: null + Code2: TF + - Code: ATG + Name: Antigua and Barbuda + Continent: North America + Region: Caribbean + SurfaceArea: 442.0 + IndepYear: 1981 + Population: 68000 + LifeExpectancy: 70.5 + GNP: 612.0 + GNPOld: 584.0 + LocalName: Antigua and Barbuda + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 63 + Code2: AG + - Code: AUS + Name: Australia + Continent: Oceania + Region: Australia and New Zealand + SurfaceArea: 7741220.0 + IndepYear: 1901 + Population: 18886000 + LifeExpectancy: 79.8 + GNP: 351182.0 + GNPOld: 392911.0 + LocalName: Australia + GovernmentForm: Constitutional Monarchy, Federation + HeadOfState: Elisabeth II + Capital: 135 + Code2: AU + - Code: AUT + Name: Austria + Continent: Europe + Region: Western Europe + SurfaceArea: 83859.0 + IndepYear: 1918 + Population: 8091800 + LifeExpectancy: 77.7 + GNP: 211860.0 + GNPOld: 206025.0 + LocalName: Österreich + GovernmentForm: Federal Republic + HeadOfState: Thomas Klestil + Capital: 1523 + Code2: AT + - Code: AZE + Name: Azerbaijan + Continent: Asia + Region: Middle East + SurfaceArea: 86600.0 + IndepYear: 1991 + Population: 7734000 + LifeExpectancy: 62.9 + GNP: 4127.0 + GNPOld: 4100.0 + LocalName: Azärbaycan + GovernmentForm: Federal Republic + HeadOfState: Heydär Äliyev + Capital: 144 + Code2: AZ + - Code: BDI + Name: Burundi + Continent: Africa + Region: Eastern Africa + SurfaceArea: 27834.0 + IndepYear: 1962 + Population: 6695000 + LifeExpectancy: 46.2 + GNP: 903.0 + GNPOld: 982.0 + LocalName: Burundi/Uburundi + GovernmentForm: Republic + HeadOfState: Pierre Buyoya + Capital: 552 + Code2: BI + - Code: BEL + Name: Belgium + Continent: Europe + Region: Western Europe + SurfaceArea: 30518.0 + IndepYear: 1830 + Population: 10239000 + LifeExpectancy: 77.8 + GNP: 249704.0 + GNPOld: 243948.0 + LocalName: België/Belgique + GovernmentForm: Constitutional Monarchy, Federation + HeadOfState: Albert II + Capital: 179 + Code2: BE + - Code: BEN + Name: Benin + Continent: Africa + Region: Western Africa + SurfaceArea: 112622.0 + IndepYear: 1960 + Population: 6097000 + LifeExpectancy: 50.2 + GNP: 2357.0 + GNPOld: 2141.0 + LocalName: Bénin + GovernmentForm: Republic + HeadOfState: Mathieu Kérékou + Capital: 187 + Code2: BJ + - Code: BFA + Name: Burkina Faso + Continent: Africa + Region: Western Africa + SurfaceArea: 274000.0 + IndepYear: 1960 + Population: 11937000 + LifeExpectancy: 46.7 + GNP: 2425.0 + GNPOld: 2201.0 + LocalName: Burkina Faso + GovernmentForm: Republic + HeadOfState: Blaise Compaoré + Capital: 549 + Code2: BF + - Code: BGD + Name: Bangladesh + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 143998.0 + IndepYear: 1971 + Population: 129155000 + LifeExpectancy: 60.2 + GNP: 32852.0 + GNPOld: 31966.0 + LocalName: Bangladesh + GovernmentForm: Republic + HeadOfState: Shahabuddin Ahmad + Capital: 150 + Code2: BD + - Code: BGR + Name: Bulgaria + Continent: Europe + Region: Eastern Europe + SurfaceArea: 110994.0 + IndepYear: 1908 + Population: 8190900 + LifeExpectancy: 70.9 + GNP: 12178.0 + GNPOld: 10169.0 + LocalName: Balgarija + GovernmentForm: Republic + HeadOfState: Petar Stojanov + Capital: 539 + Code2: BG + - Code: BHR + Name: Bahrain + Continent: Asia + Region: Middle East + SurfaceArea: 694.0 + IndepYear: 1971 + Population: 617000 + LifeExpectancy: 73.0 + GNP: 6366.0 + GNPOld: 6097.0 + LocalName: Al-Bahrayn + GovernmentForm: Monarchy (Emirate) + HeadOfState: Hamad ibn Isa al-Khalifa + Capital: 149 + Code2: BH + - Code: BHS + Name: Bahamas + Continent: North America + Region: Caribbean + SurfaceArea: 13878.0 + IndepYear: 1973 + Population: 307000 + LifeExpectancy: 71.1 + GNP: 3527.0 + GNPOld: 3347.0 + LocalName: The Bahamas + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 148 + Code2: BS + - Code: BIH + Name: Bosnia and Herzegovina + Continent: Europe + Region: Southern Europe + SurfaceArea: 51197.0 + IndepYear: 1992 + Population: 3972000 + LifeExpectancy: 71.5 + GNP: 2841.0 + GNPOld: null + LocalName: Bosna i Hercegovina + GovernmentForm: Federal Republic + HeadOfState: Ante Jelavic + Capital: 201 + Code2: BA + - Code: BLR + Name: Belarus + Continent: Europe + Region: Eastern Europe + SurfaceArea: 207600.0 + IndepYear: 1991 + Population: 10236000 + LifeExpectancy: 68.0 + GNP: 13714.0 + GNPOld: null + LocalName: Belarus + GovernmentForm: Republic + HeadOfState: Aljaksandr Lukašenka + Capital: 3520 + Code2: BY + - Code: BLZ + Name: Belize + Continent: North America + Region: Central America + SurfaceArea: 22696.0 + IndepYear: 1981 + Population: 241000 + LifeExpectancy: 70.9 + GNP: 630.0 + GNPOld: 616.0 + LocalName: Belize + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 185 + Code2: BZ + - Code: BMU + Name: Bermuda + Continent: North America + Region: North America + SurfaceArea: 53.0 + IndepYear: null + Population: 65000 + LifeExpectancy: 76.9 + GNP: 2328.0 + GNPOld: 2190.0 + LocalName: Bermuda + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 191 + Code2: BM + - Code: BOL + Name: Bolivia + Continent: South America + Region: South America + SurfaceArea: 1098581.0 + IndepYear: 1825 + Population: 8329000 + LifeExpectancy: 63.7 + GNP: 8571.0 + GNPOld: 7967.0 + LocalName: Bolivia + GovernmentForm: Republic + HeadOfState: Hugo Bánzer Suárez + Capital: 194 + Code2: BO + - Code: BRA + Name: Brazil + Continent: South America + Region: South America + SurfaceArea: 8547403.0 + IndepYear: 1822 + Population: 170115000 + LifeExpectancy: 62.9 + GNP: 776739.0 + GNPOld: 804108.0 + LocalName: Brasil + GovernmentForm: Federal Republic + HeadOfState: Fernando Henrique Cardoso + Capital: 211 + Code2: BR + - Code: BRB + Name: Barbados + Continent: North America + Region: Caribbean + SurfaceArea: 430.0 + IndepYear: 1966 + Population: 270000 + LifeExpectancy: 73.0 + GNP: 2223.0 + GNPOld: 2186.0 + LocalName: Barbados + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 174 + Code2: BB + - Code: BRN + Name: Brunei + Continent: Asia + Region: Southeast Asia + SurfaceArea: 5765.0 + IndepYear: 1984 + Population: 328000 + LifeExpectancy: 73.6 + GNP: 11705.0 + GNPOld: 12460.0 + LocalName: Brunei Darussalam + GovernmentForm: Monarchy (Sultanate) + HeadOfState: Haji Hassan al-Bolkiah + Capital: 538 + Code2: BN + - Code: BTN + Name: Bhutan + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 47000.0 + IndepYear: 1910 + Population: 2124000 + LifeExpectancy: 52.4 + GNP: 372.0 + GNPOld: 383.0 + LocalName: Druk-Yul + GovernmentForm: Monarchy + HeadOfState: Jigme Singye Wangchuk + Capital: 192 + Code2: BT + - Code: BVT + Name: Bouvet Island + Continent: Antarctica + Region: Antarctica + SurfaceArea: 59.0 + IndepYear: null + Population: 0 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Bouvetøya + GovernmentForm: Dependent Territory of Norway + HeadOfState: Harald V + Capital: null + Code2: BV + - Code: BWA + Name: Botswana + Continent: Africa + Region: Southern Africa + SurfaceArea: 581730.0 + IndepYear: 1966 + Population: 1622000 + LifeExpectancy: 39.3 + GNP: 4834.0 + GNPOld: 4935.0 + LocalName: Botswana + GovernmentForm: Republic + HeadOfState: Festus G. Mogae + Capital: 204 + Code2: BW + - Code: CAF + Name: Central African Republic + Continent: Africa + Region: Central Africa + SurfaceArea: 622984.0 + IndepYear: 1960 + Population: 3615000 + LifeExpectancy: 44.0 + GNP: 1054.0 + GNPOld: 993.0 + LocalName: Centrafrique/Bê-Afrîka + GovernmentForm: Republic + HeadOfState: Ange-Félix Patassé + Capital: 1889 + Code2: CF + - Code: CAN + Name: Canada + Continent: North America + Region: North America + SurfaceArea: 9970610.0 + IndepYear: 1867 + Population: 31147000 + LifeExpectancy: 79.4 + GNP: 598862.0 + GNPOld: 625626.0 + LocalName: Canada + GovernmentForm: Constitutional Monarchy, Federation + HeadOfState: Elisabeth II + Capital: 1822 + Code2: CA + - Code: CCK + Name: Cocos (Keeling) Islands + Continent: Oceania + Region: Australia and New Zealand + SurfaceArea: 14.0 + IndepYear: null + Population: 600 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Cocos (Keeling) Islands + GovernmentForm: Territory of Australia + HeadOfState: Elisabeth II + Capital: 2317 + Code2: CC + - Code: CHE + Name: Switzerland + Continent: Europe + Region: Western Europe + SurfaceArea: 41284.0 + IndepYear: 1499 + Population: 7160400 + LifeExpectancy: 79.6 + GNP: 264478.0 + GNPOld: 256092.0 + LocalName: Schweiz/Suisse/Svizzera/Svizra + GovernmentForm: Federation + HeadOfState: Adolf Ogi + Capital: 3248 + Code2: CH + - Code: CHL + Name: Chile + Continent: South America + Region: South America + SurfaceArea: 756626.0 + IndepYear: 1810 + Population: 15211000 + LifeExpectancy: 75.7 + GNP: 72949.0 + GNPOld: 75780.0 + LocalName: Chile + GovernmentForm: Republic + HeadOfState: Ricardo Lagos Escobar + Capital: 554 + Code2: CL + - Code: CHN + Name: China + Continent: Asia + Region: Eastern Asia + SurfaceArea: 9572900.0 + IndepYear: -1523 + Population: 1277558000 + LifeExpectancy: 71.4 + GNP: 982268.0 + GNPOld: 917719.0 + LocalName: Zhongquo + GovernmentForm: People'sRepublic + HeadOfState: Jiang Zemin + Capital: 1891 + Code2: CN + - Code: CIV + Name: Côte d’Ivoire + Continent: Africa + Region: Western Africa + SurfaceArea: 322463.0 + IndepYear: 1960 + Population: 14786000 + LifeExpectancy: 45.2 + GNP: 11345.0 + GNPOld: 10285.0 + LocalName: Côte d’Ivoire + GovernmentForm: Republic + HeadOfState: Laurent Gbagbo + Capital: 2814 + Code2: CI + - Code: CMR + Name: Cameroon + Continent: Africa + Region: Central Africa + SurfaceArea: 475442.0 + IndepYear: 1960 + Population: 15085000 + LifeExpectancy: 54.8 + GNP: 9174.0 + GNPOld: 8596.0 + LocalName: Cameroun/Cameroon + GovernmentForm: Republic + HeadOfState: Paul Biya + Capital: 1804 + Code2: CM + - Code: COD + Name: Congo, The Democratic Republic of the + Continent: Africa + Region: Central Africa + SurfaceArea: 2344858.0 + IndepYear: 1960 + Population: 51654000 + LifeExpectancy: 48.8 + GNP: 6964.0 + GNPOld: 2474.0 + LocalName: République Démocratique du Congo + GovernmentForm: Republic + HeadOfState: Joseph Kabila + Capital: 2298 + Code2: CD + - Code: COG + Name: Congo + Continent: Africa + Region: Central Africa + SurfaceArea: 342000.0 + IndepYear: 1960 + Population: 2943000 + LifeExpectancy: 47.4 + GNP: 2108.0 + GNPOld: 2287.0 + LocalName: Congo + GovernmentForm: Republic + HeadOfState: Denis Sassou-Nguesso + Capital: 2296 + Code2: CG + - Code: COK + Name: Cook Islands + Continent: Oceania + Region: Polynesia + SurfaceArea: 236.0 + IndepYear: null + Population: 20000 + LifeExpectancy: 71.1 + GNP: 100.0 + GNPOld: null + LocalName: The Cook Islands + GovernmentForm: Nonmetropolitan Territory of New Zealand + HeadOfState: Elisabeth II + Capital: 583 + Code2: CK + - Code: COL + Name: Colombia + Continent: South America + Region: South America + SurfaceArea: 1138914.0 + IndepYear: 1810 + Population: 42321000 + LifeExpectancy: 70.3 + GNP: 102896.0 + GNPOld: 105116.0 + LocalName: Colombia + GovernmentForm: Republic + HeadOfState: Andrés Pastrana Arango + Capital: 2257 + Code2: CO + - Code: COM + Name: Comoros + Continent: Africa + Region: Eastern Africa + SurfaceArea: 1862.0 + IndepYear: 1975 + Population: 578000 + LifeExpectancy: 60.0 + GNP: 4401.0 + GNPOld: 4361.0 + LocalName: Komori/Comores + GovernmentForm: Republic + HeadOfState: Azali Assoumani + Capital: 2295 + Code2: KM + - Code: CPV + Name: Cape Verde + Continent: Africa + Region: Western Africa + SurfaceArea: 4033.0 + IndepYear: 1975 + Population: 428000 + LifeExpectancy: 68.9 + GNP: 435.0 + GNPOld: 420.0 + LocalName: Cabo Verde + GovernmentForm: Republic + HeadOfState: António Mascarenhas Monteiro + Capital: 1859 + Code2: CV + - Code: CRI + Name: Costa Rica + Continent: North America + Region: Central America + SurfaceArea: 51100.0 + IndepYear: 1821 + Population: 4023000 + LifeExpectancy: 75.8 + GNP: 10226.0 + GNPOld: 9757.0 + LocalName: Costa Rica + GovernmentForm: Republic + HeadOfState: Miguel Ángel Rodríguez Echeverría + Capital: 584 + Code2: CR + - Code: CUB + Name: Cuba + Continent: North America + Region: Caribbean + SurfaceArea: 110861.0 + IndepYear: 1902 + Population: 11201000 + LifeExpectancy: 76.2 + GNP: 17843.0 + GNPOld: 18862.0 + LocalName: Cuba + GovernmentForm: Socialistic Republic + HeadOfState: Fidel Castro Ruz + Capital: 2413 + Code2: CU + - Code: CXR + Name: Christmas Island + Continent: Oceania + Region: Australia and New Zealand + SurfaceArea: 135.0 + IndepYear: null + Population: 2500 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Christmas Island + GovernmentForm: Territory of Australia + HeadOfState: Elisabeth II + Capital: 1791 + Code2: CX + - Code: CYM + Name: Cayman Islands + Continent: North America + Region: Caribbean + SurfaceArea: 264.0 + IndepYear: null + Population: 38000 + LifeExpectancy: 78.9 + GNP: 1263.0 + GNPOld: 1186.0 + LocalName: Cayman Islands + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 553 + Code2: KY + - Code: CYP + Name: Cyprus + Continent: Asia + Region: Middle East + SurfaceArea: 9251.0 + IndepYear: 1960 + Population: 754700 + LifeExpectancy: 76.7 + GNP: 9333.0 + GNPOld: 8246.0 + LocalName: Kýpros/Kibris + GovernmentForm: Republic + HeadOfState: Glafkos Klerides + Capital: 2430 + Code2: CY + - Code: CZE + Name: Czech Republic + Continent: Europe + Region: Eastern Europe + SurfaceArea: 78866.0 + IndepYear: 1993 + Population: 10278100 + LifeExpectancy: 74.5 + GNP: 55017.0 + GNPOld: 52037.0 + LocalName: ¸esko + GovernmentForm: Republic + HeadOfState: Václav Havel + Capital: 3339 + Code2: CZ + - Code: DEU + Name: Germany + Continent: Europe + Region: Western Europe + SurfaceArea: 357022.0 + IndepYear: 1955 + Population: 82164700 + LifeExpectancy: 77.4 + GNP: 2133367.0 + GNPOld: 2102826.0 + LocalName: Deutschland + GovernmentForm: Federal Republic + HeadOfState: Johannes Rau + Capital: 3068 + Code2: DE + - Code: DJI + Name: Djibouti + Continent: Africa + Region: Eastern Africa + SurfaceArea: 23200.0 + IndepYear: 1977 + Population: 638000 + LifeExpectancy: 50.8 + GNP: 382.0 + GNPOld: 373.0 + LocalName: Djibouti/Jibuti + GovernmentForm: Republic + HeadOfState: Ismail Omar Guelleh + Capital: 585 + Code2: DJ + - Code: DMA + Name: Dominica + Continent: North America + Region: Caribbean + SurfaceArea: 751.0 + IndepYear: 1978 + Population: 71000 + LifeExpectancy: 73.4 + GNP: 256.0 + GNPOld: 243.0 + LocalName: Dominica + GovernmentForm: Republic + HeadOfState: Vernon Shaw + Capital: 586 + Code2: DM + - Code: DNK + Name: Denmark + Continent: Europe + Region: Nordic Countries + SurfaceArea: 43094.0 + IndepYear: 800 + Population: 5330000 + LifeExpectancy: 76.5 + GNP: 174099.0 + GNPOld: 169264.0 + LocalName: Danmark + GovernmentForm: Constitutional Monarchy + HeadOfState: Margrethe II + Capital: 3315 + Code2: DK + - Code: DOM + Name: Dominican Republic + Continent: North America + Region: Caribbean + SurfaceArea: 48511.0 + IndepYear: 1844 + Population: 8495000 + LifeExpectancy: 73.2 + GNP: 15846.0 + GNPOld: 15076.0 + LocalName: República Dominicana + GovernmentForm: Republic + HeadOfState: Hipólito Mejía Domínguez + Capital: 587 + Code2: DO + - Code: DZA + Name: Algeria + Continent: Africa + Region: Northern Africa + SurfaceArea: 2381741.0 + IndepYear: 1962 + Population: 31471000 + LifeExpectancy: 69.7 + GNP: 49982.0 + GNPOld: 46966.0 + LocalName: Al-Jaza’ir/Algérie + GovernmentForm: Republic + HeadOfState: Abdelaziz Bouteflika + Capital: 35 + Code2: DZ + - Code: ECU + Name: Ecuador + Continent: South America + Region: South America + SurfaceArea: 283561.0 + IndepYear: 1822 + Population: 12646000 + LifeExpectancy: 71.1 + GNP: 19770.0 + GNPOld: 19769.0 + LocalName: Ecuador + GovernmentForm: Republic + HeadOfState: Gustavo Noboa Bejarano + Capital: 594 + Code2: EC + - Code: EGY + Name: Egypt + Continent: Africa + Region: Northern Africa + SurfaceArea: 1001449.0 + IndepYear: 1922 + Population: 68470000 + LifeExpectancy: 63.3 + GNP: 82710.0 + GNPOld: 75617.0 + LocalName: Misr + GovernmentForm: Republic + HeadOfState: Hosni Mubarak + Capital: 608 + Code2: EG + - Code: ERI + Name: Eritrea + Continent: Africa + Region: Eastern Africa + SurfaceArea: 117600.0 + IndepYear: 1993 + Population: 3850000 + LifeExpectancy: 55.8 + GNP: 650.0 + GNPOld: 755.0 + LocalName: Ertra + GovernmentForm: Republic + HeadOfState: Isayas Afewerki [Isaias Afwerki] + Capital: 652 + Code2: ER + - Code: ESH + Name: Western Sahara + Continent: Africa + Region: Northern Africa + SurfaceArea: 266000.0 + IndepYear: null + Population: 293000 + LifeExpectancy: 49.8 + GNP: 60.0 + GNPOld: null + LocalName: As-Sahrawiya + GovernmentForm: Occupied by Marocco + HeadOfState: Mohammed Abdel Aziz + Capital: 2453 + Code2: EH + - Code: ESP + Name: Spain + Continent: Europe + Region: Southern Europe + SurfaceArea: 505992.0 + IndepYear: 1492 + Population: 39441700 + LifeExpectancy: 78.8 + GNP: 553233.0 + GNPOld: 532031.0 + LocalName: España + GovernmentForm: Constitutional Monarchy + HeadOfState: Juan Carlos I + Capital: 653 + Code2: ES + - Code: EST + Name: Estonia + Continent: Europe + Region: Baltic Countries + SurfaceArea: 45227.0 + IndepYear: 1991 + Population: 1439200 + LifeExpectancy: 69.5 + GNP: 5328.0 + GNPOld: 3371.0 + LocalName: Eesti + GovernmentForm: Republic + HeadOfState: Lennart Meri + Capital: 3791 + Code2: EE + - Code: ETH + Name: Ethiopia + Continent: Africa + Region: Eastern Africa + SurfaceArea: 1104300.0 + IndepYear: -1000 + Population: 62565000 + LifeExpectancy: 45.2 + GNP: 6353.0 + GNPOld: 6180.0 + LocalName: YeItyop´iya + GovernmentForm: Republic + HeadOfState: Negasso Gidada + Capital: 756 + Code2: ET + - Code: FIN + Name: Finland + Continent: Europe + Region: Nordic Countries + SurfaceArea: 338145.0 + IndepYear: 1917 + Population: 5171300 + LifeExpectancy: 77.4 + GNP: 121914.0 + GNPOld: 119833.0 + LocalName: Suomi + GovernmentForm: Republic + HeadOfState: Tarja Halonen + Capital: 3236 + Code2: FI + - Code: FJI + Name: Fiji Islands + Continent: Oceania + Region: Melanesia + SurfaceArea: 18274.0 + IndepYear: 1970 + Population: 817000 + LifeExpectancy: 67.9 + GNP: 1536.0 + GNPOld: 2149.0 + LocalName: Fiji Islands + GovernmentForm: Republic + HeadOfState: Josefa Iloilo + Capital: 764 + Code2: FJ + - Code: FLK + Name: Falkland Islands + Continent: South America + Region: South America + SurfaceArea: 12173.0 + IndepYear: null + Population: 2000 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Falkland Islands + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 763 + Code2: FK + - Code: FRA + Name: France + Continent: Europe + Region: Western Europe + SurfaceArea: 551500.0 + IndepYear: 843 + Population: 59225700 + LifeExpectancy: 78.8 + GNP: 1424285.0 + GNPOld: 1392448.0 + LocalName: France + GovernmentForm: Republic + HeadOfState: Jacques Chirac + Capital: 2974 + Code2: FR + - Code: FRO + Name: Faroe Islands + Continent: Europe + Region: Nordic Countries + SurfaceArea: 1399.0 + IndepYear: null + Population: 43000 + LifeExpectancy: 78.4 + GNP: 0.0 + GNPOld: null + LocalName: Føroyar + GovernmentForm: Part of Denmark + HeadOfState: Margrethe II + Capital: 901 + Code2: FO + - Code: FSM + Name: Micronesia, Federated States of + Continent: Oceania + Region: Micronesia + SurfaceArea: 702.0 + IndepYear: 1990 + Population: 119000 + LifeExpectancy: 68.6 + GNP: 212.0 + GNPOld: null + LocalName: Micronesia + GovernmentForm: Federal Republic + HeadOfState: Leo A. Falcam + Capital: 2689 + Code2: FM + - Code: GAB + Name: Gabon + Continent: Africa + Region: Central Africa + SurfaceArea: 267668.0 + IndepYear: 1960 + Population: 1226000 + LifeExpectancy: 50.1 + GNP: 5493.0 + GNPOld: 5279.0 + LocalName: Le Gabon + GovernmentForm: Republic + HeadOfState: Omar Bongo + Capital: 902 + Code2: GA + - Code: GBR + Name: United Kingdom + Continent: Europe + Region: British Islands + SurfaceArea: 242900.0 + IndepYear: 1066 + Population: 59623400 + LifeExpectancy: 77.7 + GNP: 1378330.0 + GNPOld: 1296830.0 + LocalName: United Kingdom + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 456 + Code2: GB + - Code: GEO + Name: Georgia + Continent: Asia + Region: Middle East + SurfaceArea: 69700.0 + IndepYear: 1991 + Population: 4968000 + LifeExpectancy: 64.5 + GNP: 6064.0 + GNPOld: 5924.0 + LocalName: Sakartvelo + GovernmentForm: Republic + HeadOfState: Eduard Ševardnadze + Capital: 905 + Code2: GE + - Code: GHA + Name: Ghana + Continent: Africa + Region: Western Africa + SurfaceArea: 238533.0 + IndepYear: 1957 + Population: 20212000 + LifeExpectancy: 57.4 + GNP: 7137.0 + GNPOld: 6884.0 + LocalName: Ghana + GovernmentForm: Republic + HeadOfState: John Kufuor + Capital: 910 + Code2: GH + - Code: GIB + Name: Gibraltar + Continent: Europe + Region: Southern Europe + SurfaceArea: 6.0 + IndepYear: null + Population: 25000 + LifeExpectancy: 79.0 + GNP: 258.0 + GNPOld: null + LocalName: Gibraltar + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 915 + Code2: GI + - Code: GIN + Name: Guinea + Continent: Africa + Region: Western Africa + SurfaceArea: 245857.0 + IndepYear: 1958 + Population: 7430000 + LifeExpectancy: 45.6 + GNP: 2352.0 + GNPOld: 2383.0 + LocalName: Guinée + GovernmentForm: Republic + HeadOfState: Lansana Conté + Capital: 926 + Code2: GN + - Code: GLP + Name: Guadeloupe + Continent: North America + Region: Caribbean + SurfaceArea: 1705.0 + IndepYear: null + Population: 456000 + LifeExpectancy: 77.0 + GNP: 3501.0 + GNPOld: null + LocalName: Guadeloupe + GovernmentForm: Overseas Department of France + HeadOfState: Jacques Chirac + Capital: 919 + Code2: GP + - Code: GMB + Name: Gambia + Continent: Africa + Region: Western Africa + SurfaceArea: 11295.0 + IndepYear: 1965 + Population: 1305000 + LifeExpectancy: 53.2 + GNP: 320.0 + GNPOld: 325.0 + LocalName: The Gambia + GovernmentForm: Republic + HeadOfState: Yahya Jammeh + Capital: 904 + Code2: GM + - Code: GNB + Name: Guinea-Bissau + Continent: Africa + Region: Western Africa + SurfaceArea: 36125.0 + IndepYear: 1974 + Population: 1213000 + LifeExpectancy: 49.0 + GNP: 293.0 + GNPOld: 272.0 + LocalName: Guiné-Bissau + GovernmentForm: Republic + HeadOfState: Kumba Ialá + Capital: 927 + Code2: GW + - Code: GNQ + Name: Equatorial Guinea + Continent: Africa + Region: Central Africa + SurfaceArea: 28051.0 + IndepYear: 1968 + Population: 453000 + LifeExpectancy: 53.6 + GNP: 283.0 + GNPOld: 542.0 + LocalName: Guinea Ecuatorial + GovernmentForm: Republic + HeadOfState: Teodoro Obiang Nguema Mbasogo + Capital: 2972 + Code2: GQ + - Code: GRC + Name: Greece + Continent: Europe + Region: Southern Europe + SurfaceArea: 131626.0 + IndepYear: 1830 + Population: 10545700 + LifeExpectancy: 78.4 + GNP: 120724.0 + GNPOld: 119946.0 + LocalName: Elláda + GovernmentForm: Republic + HeadOfState: Kostis Stefanopoulos + Capital: 2401 + Code2: GR + - Code: GRD + Name: Grenada + Continent: North America + Region: Caribbean + SurfaceArea: 344.0 + IndepYear: 1974 + Population: 94000 + LifeExpectancy: 64.5 + GNP: 318.0 + GNPOld: null + LocalName: Grenada + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 916 + Code2: GD + - Code: GRL + Name: Greenland + Continent: North America + Region: North America + SurfaceArea: 2166090.0 + IndepYear: null + Population: 56000 + LifeExpectancy: 68.1 + GNP: 0.0 + GNPOld: null + LocalName: Kalaallit Nunaat/Grønland + GovernmentForm: Part of Denmark + HeadOfState: Margrethe II + Capital: 917 + Code2: GL + - Code: GTM + Name: Guatemala + Continent: North America + Region: Central America + SurfaceArea: 108889.0 + IndepYear: 1821 + Population: 11385000 + LifeExpectancy: 66.2 + GNP: 19008.0 + GNPOld: 17797.0 + LocalName: Guatemala + GovernmentForm: Republic + HeadOfState: Alfonso Portillo Cabrera + Capital: 922 + Code2: GT + - Code: GUF + Name: French Guiana + Continent: South America + Region: South America + SurfaceArea: 90000.0 + IndepYear: null + Population: 181000 + LifeExpectancy: 76.1 + GNP: 681.0 + GNPOld: null + LocalName: Guyane française + GovernmentForm: Overseas Department of France + HeadOfState: Jacques Chirac + Capital: 3014 + Code2: GF + - Code: GUM + Name: Guam + Continent: Oceania + Region: Micronesia + SurfaceArea: 549.0 + IndepYear: null + Population: 168000 + LifeExpectancy: 77.8 + GNP: 1197.0 + GNPOld: 1136.0 + LocalName: Guam + GovernmentForm: US Territory + HeadOfState: George W. Bush + Capital: 921 + Code2: GU + - Code: GUY + Name: Guyana + Continent: South America + Region: South America + SurfaceArea: 214969.0 + IndepYear: 1966 + Population: 861000 + LifeExpectancy: 64.0 + GNP: 722.0 + GNPOld: 743.0 + LocalName: Guyana + GovernmentForm: Republic + HeadOfState: Bharrat Jagdeo + Capital: 928 + Code2: GY + - Code: HKG + Name: Hong Kong + Continent: Asia + Region: Eastern Asia + SurfaceArea: 1075.0 + IndepYear: null + Population: 6782000 + LifeExpectancy: 79.5 + GNP: 166448.0 + GNPOld: 173610.0 + LocalName: Xianggang/Hong Kong + GovernmentForm: Special Administrative Region of China + HeadOfState: Jiang Zemin + Capital: 937 + Code2: HK + - Code: HMD + Name: Heard Island and McDonald Islands + Continent: Antarctica + Region: Antarctica + SurfaceArea: 359.0 + IndepYear: null + Population: 0 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Heard and McDonald Islands + GovernmentForm: Territory of Australia + HeadOfState: Elisabeth II + Capital: null + Code2: HM + - Code: HND + Name: Honduras + Continent: North America + Region: Central America + SurfaceArea: 112088.0 + IndepYear: 1838 + Population: 6485000 + LifeExpectancy: 69.9 + GNP: 5333.0 + GNPOld: 4697.0 + LocalName: Honduras + GovernmentForm: Republic + HeadOfState: Carlos Roberto Flores Facussé + Capital: 933 + Code2: HN + - Code: HRV + Name: Croatia + Continent: Europe + Region: Southern Europe + SurfaceArea: 56538.0 + IndepYear: 1991 + Population: 4473000 + LifeExpectancy: 73.7 + GNP: 20208.0 + GNPOld: 19300.0 + LocalName: Hrvatska + GovernmentForm: Republic + HeadOfState: Štipe Mesic + Capital: 2409 + Code2: HR + - Code: HTI + Name: Haiti + Continent: North America + Region: Caribbean + SurfaceArea: 27750.0 + IndepYear: 1804 + Population: 8222000 + LifeExpectancy: 49.2 + GNP: 3459.0 + GNPOld: 3107.0 + LocalName: Haïti/Dayti + GovernmentForm: Republic + HeadOfState: Jean-Bertrand Aristide + Capital: 929 + Code2: HT + - Code: HUN + Name: Hungary + Continent: Europe + Region: Eastern Europe + SurfaceArea: 93030.0 + IndepYear: 1918 + Population: 10043200 + LifeExpectancy: 71.4 + GNP: 48267.0 + GNPOld: 45914.0 + LocalName: Magyarország + GovernmentForm: Republic + HeadOfState: Ferenc Mádl + Capital: 3483 + Code2: HU + - Code: IDN + Name: Indonesia + Continent: Asia + Region: Southeast Asia + SurfaceArea: 1904569.0 + IndepYear: 1945 + Population: 212107000 + LifeExpectancy: 68.0 + GNP: 84982.0 + GNPOld: 215002.0 + LocalName: Indonesia + GovernmentForm: Republic + HeadOfState: Abdurrahman Wahid + Capital: 939 + Code2: ID + - Code: IND + Name: India + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 3287263.0 + IndepYear: 1947 + Population: 1013662000 + LifeExpectancy: 62.5 + GNP: 447114.0 + GNPOld: 430572.0 + LocalName: Bharat/India + GovernmentForm: Federal Republic + HeadOfState: Kocheril Raman Narayanan + Capital: 1109 + Code2: IN + - Code: IOT + Name: British Indian Ocean Territory + Continent: Africa + Region: Eastern Africa + SurfaceArea: 78.0 + IndepYear: null + Population: 0 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: British Indian Ocean Territory + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: null + Code2: IO + - Code: IRL + Name: Ireland + Continent: Europe + Region: British Islands + SurfaceArea: 70273.0 + IndepYear: 1921 + Population: 3775100 + LifeExpectancy: 76.8 + GNP: 75921.0 + GNPOld: 73132.0 + LocalName: Ireland/Éire + GovernmentForm: Republic + HeadOfState: Mary McAleese + Capital: 1447 + Code2: IE + - Code: IRN + Name: Iran + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 1648195.0 + IndepYear: 1906 + Population: 67702000 + LifeExpectancy: 69.7 + GNP: 195746.0 + GNPOld: 160151.0 + LocalName: Iran + GovernmentForm: Islamic Republic + HeadOfState: Ali Mohammad Khatami-Ardakani + Capital: 1380 + Code2: IR + - Code: IRQ + Name: Iraq + Continent: Asia + Region: Middle East + SurfaceArea: 438317.0 + IndepYear: 1932 + Population: 23115000 + LifeExpectancy: 66.5 + GNP: 11500.0 + GNPOld: null + LocalName: Al-´Iraq + GovernmentForm: Republic + HeadOfState: Saddam Hussein al-Takriti + Capital: 1365 + Code2: IQ + - Code: ISL + Name: Iceland + Continent: Europe + Region: Nordic Countries + SurfaceArea: 103000.0 + IndepYear: 1944 + Population: 279000 + LifeExpectancy: 79.4 + GNP: 8255.0 + GNPOld: 7474.0 + LocalName: Ísland + GovernmentForm: Republic + HeadOfState: Ólafur Ragnar Grímsson + Capital: 1449 + Code2: IS + - Code: ISR + Name: Israel + Continent: Asia + Region: Middle East + SurfaceArea: 21056.0 + IndepYear: 1948 + Population: 6217000 + LifeExpectancy: 78.6 + GNP: 97477.0 + GNPOld: 98577.0 + LocalName: Yisra’el/Isra’il + GovernmentForm: Republic + HeadOfState: Moshe Katzav + Capital: 1450 + Code2: IL + - Code: ITA + Name: Italy + Continent: Europe + Region: Southern Europe + SurfaceArea: 301316.0 + IndepYear: 1861 + Population: 57680000 + LifeExpectancy: 79.0 + GNP: 1161755.0 + GNPOld: 1145372.0 + LocalName: Italia + GovernmentForm: Republic + HeadOfState: Carlo Azeglio Ciampi + Capital: 1464 + Code2: IT + - Code: JAM + Name: Jamaica + Continent: North America + Region: Caribbean + SurfaceArea: 10990.0 + IndepYear: 1962 + Population: 2583000 + LifeExpectancy: 75.2 + GNP: 6871.0 + GNPOld: 6722.0 + LocalName: Jamaica + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 1530 + Code2: JM + - Code: JOR + Name: Jordan + Continent: Asia + Region: Middle East + SurfaceArea: 88946.0 + IndepYear: 1946 + Population: 5083000 + LifeExpectancy: 77.4 + GNP: 7526.0 + GNPOld: 7051.0 + LocalName: Al-Urdunn + GovernmentForm: Constitutional Monarchy + HeadOfState: Abdullah II + Capital: 1786 + Code2: JO + - Code: JPN + Name: Japan + Continent: Asia + Region: Eastern Asia + SurfaceArea: 377829.0 + IndepYear: -660 + Population: 126714000 + LifeExpectancy: 80.7 + GNP: 3787042.0 + GNPOld: 4192638.0 + LocalName: Nihon/Nippon + GovernmentForm: Constitutional Monarchy + HeadOfState: Akihito + Capital: 1532 + Code2: JP + - Code: KAZ + Name: Kazakstan + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 2724900.0 + IndepYear: 1991 + Population: 16223000 + LifeExpectancy: 63.2 + GNP: 24375.0 + GNPOld: 23383.0 + LocalName: Qazaqstan + GovernmentForm: Republic + HeadOfState: Nursultan Nazarbajev + Capital: 1864 + Code2: KZ + - Code: KEN + Name: Kenya + Continent: Africa + Region: Eastern Africa + SurfaceArea: 580367.0 + IndepYear: 1963 + Population: 30080000 + LifeExpectancy: 48.0 + GNP: 9217.0 + GNPOld: 10241.0 + LocalName: Kenya + GovernmentForm: Republic + HeadOfState: Daniel arap Moi + Capital: 1881 + Code2: KE + - Code: KGZ + Name: Kyrgyzstan + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 199900.0 + IndepYear: 1991 + Population: 4699000 + LifeExpectancy: 63.4 + GNP: 1626.0 + GNPOld: 1767.0 + LocalName: Kyrgyzstan + GovernmentForm: Republic + HeadOfState: Askar Akajev + Capital: 2253 + Code2: KG + - Code: KHM + Name: Cambodia + Continent: Asia + Region: Southeast Asia + SurfaceArea: 181035.0 + IndepYear: 1953 + Population: 11168000 + LifeExpectancy: 56.5 + GNP: 5121.0 + GNPOld: 5670.0 + LocalName: Kâmpuchéa + GovernmentForm: Constitutional Monarchy + HeadOfState: Norodom Sihanouk + Capital: 1800 + Code2: KH + - Code: KIR + Name: Kiribati + Continent: Oceania + Region: Micronesia + SurfaceArea: 726.0 + IndepYear: 1979 + Population: 83000 + LifeExpectancy: 59.8 + GNP: 40.7 + GNPOld: null + LocalName: Kiribati + GovernmentForm: Republic + HeadOfState: Teburoro Tito + Capital: 2256 + Code2: KI + - Code: KNA + Name: Saint Kitts and Nevis + Continent: North America + Region: Caribbean + SurfaceArea: 261.0 + IndepYear: 1983 + Population: 38000 + LifeExpectancy: 70.7 + GNP: 299.0 + GNPOld: null + LocalName: Saint Kitts and Nevis + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 3064 + Code2: KN + - Code: KOR + Name: South Korea + Continent: Asia + Region: Eastern Asia + SurfaceArea: 99434.0 + IndepYear: 1948 + Population: 46844000 + LifeExpectancy: 74.4 + GNP: 320749.0 + GNPOld: 442544.0 + LocalName: Taehan Min’guk (Namhan) + GovernmentForm: Republic + HeadOfState: Kim Dae-jung + Capital: 2331 + Code2: KR + - Code: KWT + Name: Kuwait + Continent: Asia + Region: Middle East + SurfaceArea: 17818.0 + IndepYear: 1961 + Population: 1972000 + LifeExpectancy: 76.1 + GNP: 27037.0 + GNPOld: 30373.0 + LocalName: Al-Kuwayt + GovernmentForm: Constitutional Monarchy (Emirate) + HeadOfState: Jabir al-Ahmad al-Jabir al-Sabah + Capital: 2429 + Code2: KW + - Code: LAO + Name: Laos + Continent: Asia + Region: Southeast Asia + SurfaceArea: 236800.0 + IndepYear: 1953 + Population: 5433000 + LifeExpectancy: 53.1 + GNP: 1292.0 + GNPOld: 1746.0 + LocalName: Lao + GovernmentForm: Republic + HeadOfState: Khamtay Siphandone + Capital: 2432 + Code2: LA + - Code: LBN + Name: Lebanon + Continent: Asia + Region: Middle East + SurfaceArea: 10400.0 + IndepYear: 1941 + Population: 3282000 + LifeExpectancy: 71.3 + GNP: 17121.0 + GNPOld: 15129.0 + LocalName: Lubnan + GovernmentForm: Republic + HeadOfState: Émile Lahoud + Capital: 2438 + Code2: LB + - Code: LBR + Name: Liberia + Continent: Africa + Region: Western Africa + SurfaceArea: 111369.0 + IndepYear: 1847 + Population: 3154000 + LifeExpectancy: 51.0 + GNP: 2012.0 + GNPOld: null + LocalName: Liberia + GovernmentForm: Republic + HeadOfState: Charles Taylor + Capital: 2440 + Code2: LR + - Code: LBY + Name: Libyan Arab Jamahiriya + Continent: Africa + Region: Northern Africa + SurfaceArea: 1759540.0 + IndepYear: 1951 + Population: 5605000 + LifeExpectancy: 75.5 + GNP: 44806.0 + GNPOld: 40562.0 + LocalName: Libiya + GovernmentForm: Socialistic State + HeadOfState: Muammar al-Qadhafi + Capital: 2441 + Code2: LY + - Code: LCA + Name: Saint Lucia + Continent: North America + Region: Caribbean + SurfaceArea: 622.0 + IndepYear: 1979 + Population: 154000 + LifeExpectancy: 72.3 + GNP: 571.0 + GNPOld: null + LocalName: Saint Lucia + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 3065 + Code2: LC + - Code: LIE + Name: Liechtenstein + Continent: Europe + Region: Western Europe + SurfaceArea: 160.0 + IndepYear: 1806 + Population: 32300 + LifeExpectancy: 78.8 + GNP: 1119.0 + GNPOld: 1084.0 + LocalName: Liechtenstein + GovernmentForm: Constitutional Monarchy + HeadOfState: Hans-Adam II + Capital: 2446 + Code2: LI + - Code: LKA + Name: Sri Lanka + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 65610.0 + IndepYear: 1948 + Population: 18827000 + LifeExpectancy: 71.8 + GNP: 15706.0 + GNPOld: 15091.0 + LocalName: Sri Lanka/Ilankai + GovernmentForm: Republic + HeadOfState: Chandrika Kumaratunga + Capital: 3217 + Code2: LK + - Code: LSO + Name: Lesotho + Continent: Africa + Region: Southern Africa + SurfaceArea: 30355.0 + IndepYear: 1966 + Population: 2153000 + LifeExpectancy: 50.8 + GNP: 1061.0 + GNPOld: 1161.0 + LocalName: Lesotho + GovernmentForm: Constitutional Monarchy + HeadOfState: Letsie III + Capital: 2437 + Code2: LS + - Code: LTU + Name: Lithuania + Continent: Europe + Region: Baltic Countries + SurfaceArea: 65301.0 + IndepYear: 1991 + Population: 3698500 + LifeExpectancy: 69.1 + GNP: 10692.0 + GNPOld: 9585.0 + LocalName: Lietuva + GovernmentForm: Republic + HeadOfState: Valdas Adamkus + Capital: 2447 + Code2: LT + - Code: LUX + Name: Luxembourg + Continent: Europe + Region: Western Europe + SurfaceArea: 2586.0 + IndepYear: 1867 + Population: 435700 + LifeExpectancy: 77.1 + GNP: 16321.0 + GNPOld: 15519.0 + LocalName: Luxembourg/Lëtzebuerg + GovernmentForm: Constitutional Monarchy + HeadOfState: Henri + Capital: 2452 + Code2: LU + - Code: LVA + Name: Latvia + Continent: Europe + Region: Baltic Countries + SurfaceArea: 64589.0 + IndepYear: 1991 + Population: 2424200 + LifeExpectancy: 68.4 + GNP: 6398.0 + GNPOld: 5639.0 + LocalName: Latvija + GovernmentForm: Republic + HeadOfState: Vaira Vike-Freiberga + Capital: 2434 + Code2: LV + - Code: MAC + Name: Macao + Continent: Asia + Region: Eastern Asia + SurfaceArea: 18.0 + IndepYear: null + Population: 473000 + LifeExpectancy: 81.6 + GNP: 5749.0 + GNPOld: 5940.0 + LocalName: Macau/Aomen + GovernmentForm: Special Administrative Region of China + HeadOfState: Jiang Zemin + Capital: 2454 + Code2: MO + - Code: MAR + Name: Morocco + Continent: Africa + Region: Northern Africa + SurfaceArea: 446550.0 + IndepYear: 1956 + Population: 28351000 + LifeExpectancy: 69.1 + GNP: 36124.0 + GNPOld: 33514.0 + LocalName: Al-Maghrib + GovernmentForm: Constitutional Monarchy + HeadOfState: Mohammed VI + Capital: 2486 + Code2: MA + - Code: MCO + Name: Monaco + Continent: Europe + Region: Western Europe + SurfaceArea: 1.5 + IndepYear: 1861 + Population: 34000 + LifeExpectancy: 78.8 + GNP: 776.0 + GNPOld: null + LocalName: Monaco + GovernmentForm: Constitutional Monarchy + HeadOfState: Rainier III + Capital: 2695 + Code2: MC + - Code: MDA + Name: Moldova + Continent: Europe + Region: Eastern Europe + SurfaceArea: 33851.0 + IndepYear: 1991 + Population: 4380000 + LifeExpectancy: 64.5 + GNP: 1579.0 + GNPOld: 1872.0 + LocalName: Moldova + GovernmentForm: Republic + HeadOfState: Vladimir Voronin + Capital: 2690 + Code2: MD + - Code: MDG + Name: Madagascar + Continent: Africa + Region: Eastern Africa + SurfaceArea: 587041.0 + IndepYear: 1960 + Population: 15942000 + LifeExpectancy: 55.0 + GNP: 3750.0 + GNPOld: 3545.0 + LocalName: Madagasikara/Madagascar + GovernmentForm: Federal Republic + HeadOfState: Didier Ratsiraka + Capital: 2455 + Code2: MG + - Code: MDV + Name: Maldives + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 298.0 + IndepYear: 1965 + Population: 286000 + LifeExpectancy: 62.2 + GNP: 199.0 + GNPOld: null + LocalName: Dhivehi Raajje/Maldives + GovernmentForm: Republic + HeadOfState: Maumoon Abdul Gayoom + Capital: 2463 + Code2: MV + - Code: MEX + Name: Mexico + Continent: North America + Region: Central America + SurfaceArea: 1958201.0 + IndepYear: 1810 + Population: 98881000 + LifeExpectancy: 71.5 + GNP: 414972.0 + GNPOld: 401461.0 + LocalName: México + GovernmentForm: Federal Republic + HeadOfState: Vicente Fox Quesada + Capital: 2515 + Code2: MX + - Code: MHL + Name: Marshall Islands + Continent: Oceania + Region: Micronesia + SurfaceArea: 181.0 + IndepYear: 1990 + Population: 64000 + LifeExpectancy: 65.5 + GNP: 97.0 + GNPOld: null + LocalName: Marshall Islands/Majol + GovernmentForm: Republic + HeadOfState: Kessai Note + Capital: 2507 + Code2: MH + - Code: MKD + Name: Macedonia + Continent: Europe + Region: Southern Europe + SurfaceArea: 25713.0 + IndepYear: 1991 + Population: 2024000 + LifeExpectancy: 73.8 + GNP: 1694.0 + GNPOld: 1915.0 + LocalName: Makedonija + GovernmentForm: Republic + HeadOfState: Boris Trajkovski + Capital: 2460 + Code2: MK + - Code: MLI + Name: Mali + Continent: Africa + Region: Western Africa + SurfaceArea: 1240192.0 + IndepYear: 1960 + Population: 11234000 + LifeExpectancy: 46.7 + GNP: 2642.0 + GNPOld: 2453.0 + LocalName: Mali + GovernmentForm: Republic + HeadOfState: Alpha Oumar Konaré + Capital: 2482 + Code2: ML + - Code: MLT + Name: Malta + Continent: Europe + Region: Southern Europe + SurfaceArea: 316.0 + IndepYear: 1964 + Population: 380200 + LifeExpectancy: 77.9 + GNP: 3512.0 + GNPOld: 3338.0 + LocalName: Malta + GovernmentForm: Republic + HeadOfState: Guido de Marco + Capital: 2484 + Code2: MT + - Code: MMR + Name: Myanmar + Continent: Asia + Region: Southeast Asia + SurfaceArea: 676578.0 + IndepYear: 1948 + Population: 45611000 + LifeExpectancy: 54.9 + GNP: 180375.0 + GNPOld: 171028.0 + LocalName: Myanma Pye + GovernmentForm: Republic + HeadOfState: kenraali Than Shwe + Capital: 2710 + Code2: MM + - Code: MNG + Name: Mongolia + Continent: Asia + Region: Eastern Asia + SurfaceArea: 1566500.0 + IndepYear: 1921 + Population: 2662000 + LifeExpectancy: 67.3 + GNP: 1043.0 + GNPOld: 933.0 + LocalName: Mongol Uls + GovernmentForm: Republic + HeadOfState: Natsagiin Bagabandi + Capital: 2696 + Code2: MN + - Code: MNP + Name: Northern Mariana Islands + Continent: Oceania + Region: Micronesia + SurfaceArea: 464.0 + IndepYear: null + Population: 78000 + LifeExpectancy: 75.5 + GNP: 0.0 + GNPOld: null + LocalName: Northern Mariana Islands + GovernmentForm: Commonwealth of the US + HeadOfState: George W. Bush + Capital: 2913 + Code2: MP + - Code: MOZ + Name: Mozambique + Continent: Africa + Region: Eastern Africa + SurfaceArea: 801590.0 + IndepYear: 1975 + Population: 19680000 + LifeExpectancy: 37.5 + GNP: 2891.0 + GNPOld: 2711.0 + LocalName: Moçambique + GovernmentForm: Republic + HeadOfState: Joaquím A. Chissano + Capital: 2698 + Code2: MZ + - Code: MRT + Name: Mauritania + Continent: Africa + Region: Western Africa + SurfaceArea: 1025520.0 + IndepYear: 1960 + Population: 2670000 + LifeExpectancy: 50.8 + GNP: 998.0 + GNPOld: 1081.0 + LocalName: Muritaniya/Mauritanie + GovernmentForm: Republic + HeadOfState: Maaouiya Ould Sid´Ahmad Taya + Capital: 2509 + Code2: MR + - Code: MSR + Name: Montserrat + Continent: North America + Region: Caribbean + SurfaceArea: 102.0 + IndepYear: null + Population: 11000 + LifeExpectancy: 78.0 + GNP: 109.0 + GNPOld: null + LocalName: Montserrat + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 2697 + Code2: MS + - Code: MTQ + Name: Martinique + Continent: North America + Region: Caribbean + SurfaceArea: 1102.0 + IndepYear: null + Population: 395000 + LifeExpectancy: 78.3 + GNP: 2731.0 + GNPOld: 2559.0 + LocalName: Martinique + GovernmentForm: Overseas Department of France + HeadOfState: Jacques Chirac + Capital: 2508 + Code2: MQ + - Code: MUS + Name: Mauritius + Continent: Africa + Region: Eastern Africa + SurfaceArea: 2040.0 + IndepYear: 1968 + Population: 1158000 + LifeExpectancy: 71.0 + GNP: 4251.0 + GNPOld: 4186.0 + LocalName: Mauritius + GovernmentForm: Republic + HeadOfState: Cassam Uteem + Capital: 2511 + Code2: MU + - Code: MWI + Name: Malawi + Continent: Africa + Region: Eastern Africa + SurfaceArea: 118484.0 + IndepYear: 1964 + Population: 10925000 + LifeExpectancy: 37.6 + GNP: 1687.0 + GNPOld: 2527.0 + LocalName: Malawi + GovernmentForm: Republic + HeadOfState: Bakili Muluzi + Capital: 2462 + Code2: MW + - Code: MYS + Name: Malaysia + Continent: Asia + Region: Southeast Asia + SurfaceArea: 329758.0 + IndepYear: 1957 + Population: 22244000 + LifeExpectancy: 70.8 + GNP: 69213.0 + GNPOld: 97884.0 + LocalName: Malaysia + GovernmentForm: Constitutional Monarchy, Federation + HeadOfState: Salahuddin Abdul Aziz Shah Alhaj + Capital: 2464 + Code2: MY + - Code: MYT + Name: Mayotte + Continent: Africa + Region: Eastern Africa + SurfaceArea: 373.0 + IndepYear: null + Population: 149000 + LifeExpectancy: 59.5 + GNP: 0.0 + GNPOld: null + LocalName: Mayotte + GovernmentForm: Territorial Collectivity of France + HeadOfState: Jacques Chirac + Capital: 2514 + Code2: YT + - Code: NAM + Name: Namibia + Continent: Africa + Region: Southern Africa + SurfaceArea: 824292.0 + IndepYear: 1990 + Population: 1726000 + LifeExpectancy: 42.5 + GNP: 3101.0 + GNPOld: 3384.0 + LocalName: Namibia + GovernmentForm: Republic + HeadOfState: Sam Nujoma + Capital: 2726 + Code2: NA + - Code: NCL + Name: New Caledonia + Continent: Oceania + Region: Melanesia + SurfaceArea: 18575.0 + IndepYear: null + Population: 214000 + LifeExpectancy: 72.8 + GNP: 3563.0 + GNPOld: null + LocalName: Nouvelle-Calédonie + GovernmentForm: Nonmetropolitan Territory of France + HeadOfState: Jacques Chirac + Capital: 3493 + Code2: NC + - Code: NER + Name: Niger + Continent: Africa + Region: Western Africa + SurfaceArea: 1267000.0 + IndepYear: 1960 + Population: 10730000 + LifeExpectancy: 41.3 + GNP: 1706.0 + GNPOld: 1580.0 + LocalName: Niger + GovernmentForm: Republic + HeadOfState: Mamadou Tandja + Capital: 2738 + Code2: NE + - Code: NFK + Name: Norfolk Island + Continent: Oceania + Region: Australia and New Zealand + SurfaceArea: 36.0 + IndepYear: null + Population: 2000 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Norfolk Island + GovernmentForm: Territory of Australia + HeadOfState: Elisabeth II + Capital: 2806 + Code2: NF + - Code: NGA + Name: Nigeria + Continent: Africa + Region: Western Africa + SurfaceArea: 923768.0 + IndepYear: 1960 + Population: 111506000 + LifeExpectancy: 51.6 + GNP: 65707.0 + GNPOld: 58623.0 + LocalName: Nigeria + GovernmentForm: Federal Republic + HeadOfState: Olusegun Obasanjo + Capital: 2754 + Code2: NG + - Code: NIC + Name: Nicaragua + Continent: North America + Region: Central America + SurfaceArea: 130000.0 + IndepYear: 1838 + Population: 5074000 + LifeExpectancy: 68.7 + GNP: 1988.0 + GNPOld: 2023.0 + LocalName: Nicaragua + GovernmentForm: Republic + HeadOfState: Arnoldo Alemán Lacayo + Capital: 2734 + Code2: NI + - Code: NIU + Name: Niue + Continent: Oceania + Region: Polynesia + SurfaceArea: 260.0 + IndepYear: null + Population: 2000 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Niue + GovernmentForm: Nonmetropolitan Territory of New Zealand + HeadOfState: Elisabeth II + Capital: 2805 + Code2: NU + - Code: NLD + Name: Netherlands + Continent: Europe + Region: Western Europe + SurfaceArea: 41526.0 + IndepYear: 1581 + Population: 15864000 + LifeExpectancy: 78.3 + GNP: 371362.0 + GNPOld: 360478.0 + LocalName: Nederland + GovernmentForm: Constitutional Monarchy + HeadOfState: Beatrix + Capital: 5 + Code2: NL + - Code: NOR + Name: Norway + Continent: Europe + Region: Nordic Countries + SurfaceArea: 323877.0 + IndepYear: 1905 + Population: 4478500 + LifeExpectancy: 78.7 + GNP: 145895.0 + GNPOld: 153370.0 + LocalName: Norge + GovernmentForm: Constitutional Monarchy + HeadOfState: Harald V + Capital: 2807 + Code2: 'NO' + - Code: NPL + Name: Nepal + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 147181.0 + IndepYear: 1769 + Population: 23930000 + LifeExpectancy: 57.8 + GNP: 4768.0 + GNPOld: 4837.0 + LocalName: Nepal + GovernmentForm: Constitutional Monarchy + HeadOfState: Gyanendra Bir Bikram + Capital: 2729 + Code2: NP + - Code: NRU + Name: Nauru + Continent: Oceania + Region: Micronesia + SurfaceArea: 21.0 + IndepYear: 1968 + Population: 12000 + LifeExpectancy: 60.8 + GNP: 197.0 + GNPOld: null + LocalName: Naoero/Nauru + GovernmentForm: Republic + HeadOfState: Bernard Dowiyogo + Capital: 2728 + Code2: NR + - Code: NZL + Name: New Zealand + Continent: Oceania + Region: Australia and New Zealand + SurfaceArea: 270534.0 + IndepYear: 1907 + Population: 3862000 + LifeExpectancy: 77.8 + GNP: 54669.0 + GNPOld: 64960.0 + LocalName: New Zealand/Aotearoa + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 3499 + Code2: NZ + - Code: OMN + Name: Oman + Continent: Asia + Region: Middle East + SurfaceArea: 309500.0 + IndepYear: 1951 + Population: 2542000 + LifeExpectancy: 71.8 + GNP: 16904.0 + GNPOld: 16153.0 + LocalName: ´Uman + GovernmentForm: Monarchy (Sultanate) + HeadOfState: Qabus ibn Sa´id + Capital: 2821 + Code2: OM + - Code: PAK + Name: Pakistan + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 796095.0 + IndepYear: 1947 + Population: 156483000 + LifeExpectancy: 61.1 + GNP: 61289.0 + GNPOld: 58549.0 + LocalName: Pakistan + GovernmentForm: Republic + HeadOfState: Mohammad Rafiq Tarar + Capital: 2831 + Code2: PK + - Code: PAN + Name: Panama + Continent: North America + Region: Central America + SurfaceArea: 75517.0 + IndepYear: 1903 + Population: 2856000 + LifeExpectancy: 75.5 + GNP: 9131.0 + GNPOld: 8700.0 + LocalName: Panamá + GovernmentForm: Republic + HeadOfState: Mireya Elisa Moscoso Rodríguez + Capital: 2882 + Code2: PA + - Code: PCN + Name: Pitcairn + Continent: Oceania + Region: Polynesia + SurfaceArea: 49.0 + IndepYear: null + Population: 50 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Pitcairn + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 2912 + Code2: PN + - Code: PER + Name: Peru + Continent: South America + Region: South America + SurfaceArea: 1285216.0 + IndepYear: 1821 + Population: 25662000 + LifeExpectancy: 70.0 + GNP: 64140.0 + GNPOld: 65186.0 + LocalName: Perú/Piruw + GovernmentForm: Republic + HeadOfState: Valentin Paniagua Corazao + Capital: 2890 + Code2: PE + - Code: PHL + Name: Philippines + Continent: Asia + Region: Southeast Asia + SurfaceArea: 300000.0 + IndepYear: 1946 + Population: 75967000 + LifeExpectancy: 67.5 + GNP: 65107.0 + GNPOld: 82239.0 + LocalName: Pilipinas + GovernmentForm: Republic + HeadOfState: Gloria Macapagal-Arroyo + Capital: 766 + Code2: PH + - Code: PLW + Name: Palau + Continent: Oceania + Region: Micronesia + SurfaceArea: 459.0 + IndepYear: 1994 + Population: 19000 + LifeExpectancy: 68.6 + GNP: 105.0 + GNPOld: null + LocalName: Belau/Palau + GovernmentForm: Republic + HeadOfState: Kuniwo Nakamura + Capital: 2881 + Code2: PW + - Code: PNG + Name: Papua New Guinea + Continent: Oceania + Region: Melanesia + SurfaceArea: 462840.0 + IndepYear: 1975 + Population: 4807000 + LifeExpectancy: 63.1 + GNP: 4988.0 + GNPOld: 6328.0 + LocalName: Papua New Guinea/Papua Niugini + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 2884 + Code2: PG + - Code: POL + Name: Poland + Continent: Europe + Region: Eastern Europe + SurfaceArea: 323250.0 + IndepYear: 1918 + Population: 38653600 + LifeExpectancy: 73.2 + GNP: 151697.0 + GNPOld: 135636.0 + LocalName: Polska + GovernmentForm: Republic + HeadOfState: Aleksander Kwasniewski + Capital: 2928 + Code2: PL + - Code: PRI + Name: Puerto Rico + Continent: North America + Region: Caribbean + SurfaceArea: 8875.0 + IndepYear: null + Population: 3869000 + LifeExpectancy: 75.6 + GNP: 34100.0 + GNPOld: 32100.0 + LocalName: Puerto Rico + GovernmentForm: Commonwealth of the US + HeadOfState: George W. Bush + Capital: 2919 + Code2: PR + - Code: PRK + Name: North Korea + Continent: Asia + Region: Eastern Asia + SurfaceArea: 120538.0 + IndepYear: 1948 + Population: 24039000 + LifeExpectancy: 70.7 + GNP: 5332.0 + GNPOld: null + LocalName: Choson Minjujuui In´min Konghwaguk (Bukhan) + GovernmentForm: Socialistic Republic + HeadOfState: Kim Jong-il + Capital: 2318 + Code2: KP + - Code: PRT + Name: Portugal + Continent: Europe + Region: Southern Europe + SurfaceArea: 91982.0 + IndepYear: 1143 + Population: 9997600 + LifeExpectancy: 75.8 + GNP: 105954.0 + GNPOld: 102133.0 + LocalName: Portugal + GovernmentForm: Republic + HeadOfState: Jorge Sampãio + Capital: 2914 + Code2: PT + - Code: PRY + Name: Paraguay + Continent: South America + Region: South America + SurfaceArea: 406752.0 + IndepYear: 1811 + Population: 5496000 + LifeExpectancy: 73.7 + GNP: 8444.0 + GNPOld: 9555.0 + LocalName: Paraguay + GovernmentForm: Republic + HeadOfState: Luis Ángel González Macchi + Capital: 2885 + Code2: PY + - Code: PSE + Name: Palestine + Continent: Asia + Region: Middle East + SurfaceArea: 6257.0 + IndepYear: null + Population: 3101000 + LifeExpectancy: 71.4 + GNP: 4173.0 + GNPOld: null + LocalName: Filastin + GovernmentForm: Autonomous Area + HeadOfState: Yasser (Yasir) Arafat + Capital: 4074 + Code2: PS + - Code: PYF + Name: French Polynesia + Continent: Oceania + Region: Polynesia + SurfaceArea: 4000.0 + IndepYear: null + Population: 235000 + LifeExpectancy: 74.8 + GNP: 818.0 + GNPOld: 781.0 + LocalName: Polynésie française + GovernmentForm: Nonmetropolitan Territory of France + HeadOfState: Jacques Chirac + Capital: 3016 + Code2: PF + - Code: QAT + Name: Qatar + Continent: Asia + Region: Middle East + SurfaceArea: 11000.0 + IndepYear: 1971 + Population: 599000 + LifeExpectancy: 72.4 + GNP: 9472.0 + GNPOld: 8920.0 + LocalName: Qatar + GovernmentForm: Monarchy + HeadOfState: Hamad ibn Khalifa al-Thani + Capital: 2973 + Code2: QA + - Code: REU + Name: Réunion + Continent: Africa + Region: Eastern Africa + SurfaceArea: 2510.0 + IndepYear: null + Population: 699000 + LifeExpectancy: 72.7 + GNP: 8287.0 + GNPOld: 7988.0 + LocalName: Réunion + GovernmentForm: Overseas Department of France + HeadOfState: Jacques Chirac + Capital: 3017 + Code2: RE + - Code: ROM + Name: Romania + Continent: Europe + Region: Eastern Europe + SurfaceArea: 238391.0 + IndepYear: 1878 + Population: 22455500 + LifeExpectancy: 69.9 + GNP: 38158.0 + GNPOld: 34843.0 + LocalName: România + GovernmentForm: Republic + HeadOfState: Ion Iliescu + Capital: 3018 + Code2: RO + - Code: RUS + Name: Russian Federation + Continent: Europe + Region: Eastern Europe + SurfaceArea: 17075400.0 + IndepYear: 1991 + Population: 146934000 + LifeExpectancy: 67.2 + GNP: 276608.0 + GNPOld: 442989.0 + LocalName: Rossija + GovernmentForm: Federal Republic + HeadOfState: Vladimir Putin + Capital: 3580 + Code2: RU + - Code: RWA + Name: Rwanda + Continent: Africa + Region: Eastern Africa + SurfaceArea: 26338.0 + IndepYear: 1962 + Population: 7733000 + LifeExpectancy: 39.3 + GNP: 2036.0 + GNPOld: 1863.0 + LocalName: Rwanda/Urwanda + GovernmentForm: Republic + HeadOfState: Paul Kagame + Capital: 3047 + Code2: RW + - Code: SAU + Name: Saudi Arabia + Continent: Asia + Region: Middle East + SurfaceArea: 2149690.0 + IndepYear: 1932 + Population: 21607000 + LifeExpectancy: 67.8 + GNP: 137635.0 + GNPOld: 146171.0 + LocalName: Al-´Arabiya as-Sa´udiya + GovernmentForm: Monarchy + HeadOfState: Fahd ibn Abdul-Aziz al-Sa´ud + Capital: 3173 + Code2: SA + - Code: SDN + Name: Sudan + Continent: Africa + Region: Northern Africa + SurfaceArea: 2505813.0 + IndepYear: 1956 + Population: 29490000 + LifeExpectancy: 56.6 + GNP: 10162.0 + GNPOld: null + LocalName: As-Sudan + GovernmentForm: Islamic Republic + HeadOfState: Omar Hassan Ahmad al-Bashir + Capital: 3225 + Code2: SD + - Code: SEN + Name: Senegal + Continent: Africa + Region: Western Africa + SurfaceArea: 196722.0 + IndepYear: 1960 + Population: 9481000 + LifeExpectancy: 62.2 + GNP: 4787.0 + GNPOld: 4542.0 + LocalName: Sénégal/Sounougal + GovernmentForm: Republic + HeadOfState: Abdoulaye Wade + Capital: 3198 + Code2: SN + - Code: SGP + Name: Singapore + Continent: Asia + Region: Southeast Asia + SurfaceArea: 618.0 + IndepYear: 1965 + Population: 3567000 + LifeExpectancy: 80.1 + GNP: 86503.0 + GNPOld: 96318.0 + LocalName: Singapore/Singapura/Xinjiapo/Singapur + GovernmentForm: Republic + HeadOfState: Sellapan Rama Nathan + Capital: 3208 + Code2: SG + - Code: SGS + Name: South Georgia and the South Sandwich Islands + Continent: Antarctica + Region: Antarctica + SurfaceArea: 3903.0 + IndepYear: null + Population: 0 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: South Georgia and the South Sandwich Islands + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: null + Code2: GS + - Code: SHN + Name: Saint Helena + Continent: Africa + Region: Western Africa + SurfaceArea: 314.0 + IndepYear: null + Population: 6000 + LifeExpectancy: 76.8 + GNP: 0.0 + GNPOld: null + LocalName: Saint Helena + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 3063 + Code2: SH + - Code: SJM + Name: Svalbard and Jan Mayen + Continent: Europe + Region: Nordic Countries + SurfaceArea: 62422.0 + IndepYear: null + Population: 3200 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Svalbard og Jan Mayen + GovernmentForm: Dependent Territory of Norway + HeadOfState: Harald V + Capital: 938 + Code2: SJ + - Code: SLB + Name: Solomon Islands + Continent: Oceania + Region: Melanesia + SurfaceArea: 28896.0 + IndepYear: 1978 + Population: 444000 + LifeExpectancy: 71.3 + GNP: 182.0 + GNPOld: 220.0 + LocalName: Solomon Islands + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 3161 + Code2: SB + - Code: SLE + Name: Sierra Leone + Continent: Africa + Region: Western Africa + SurfaceArea: 71740.0 + IndepYear: 1961 + Population: 4854000 + LifeExpectancy: 45.3 + GNP: 746.0 + GNPOld: 858.0 + LocalName: Sierra Leone + GovernmentForm: Republic + HeadOfState: Ahmed Tejan Kabbah + Capital: 3207 + Code2: SL + - Code: SLV + Name: El Salvador + Continent: North America + Region: Central America + SurfaceArea: 21041.0 + IndepYear: 1841 + Population: 6276000 + LifeExpectancy: 69.7 + GNP: 11863.0 + GNPOld: 11203.0 + LocalName: El Salvador + GovernmentForm: Republic + HeadOfState: Francisco Guillermo Flores Pérez + Capital: 645 + Code2: SV + - Code: SMR + Name: San Marino + Continent: Europe + Region: Southern Europe + SurfaceArea: 61.0 + IndepYear: 885 + Population: 27000 + LifeExpectancy: 81.1 + GNP: 510.0 + GNPOld: null + LocalName: San Marino + GovernmentForm: Republic + HeadOfState: null + Capital: 3171 + Code2: SM + - Code: SOM + Name: Somalia + Continent: Africa + Region: Eastern Africa + SurfaceArea: 637657.0 + IndepYear: 1960 + Population: 10097000 + LifeExpectancy: 46.2 + GNP: 935.0 + GNPOld: null + LocalName: Soomaaliya + GovernmentForm: Republic + HeadOfState: Abdiqassim Salad Hassan + Capital: 3214 + Code2: SO + - Code: SPM + Name: Saint Pierre and Miquelon + Continent: North America + Region: North America + SurfaceArea: 242.0 + IndepYear: null + Population: 7000 + LifeExpectancy: 77.6 + GNP: 0.0 + GNPOld: null + LocalName: Saint-Pierre-et-Miquelon + GovernmentForm: Territorial Collectivity of France + HeadOfState: Jacques Chirac + Capital: 3067 + Code2: PM + - Code: STP + Name: Sao Tome and Principe + Continent: Africa + Region: Central Africa + SurfaceArea: 964.0 + IndepYear: 1975 + Population: 147000 + LifeExpectancy: 65.3 + GNP: 6.0 + GNPOld: null + LocalName: São Tomé e Príncipe + GovernmentForm: Republic + HeadOfState: Miguel Trovoada + Capital: 3172 + Code2: ST + - Code: SUR + Name: Suriname + Continent: South America + Region: South America + SurfaceArea: 163265.0 + IndepYear: 1975 + Population: 417000 + LifeExpectancy: 71.4 + GNP: 870.0 + GNPOld: 706.0 + LocalName: Suriname + GovernmentForm: Republic + HeadOfState: Ronald Venetiaan + Capital: 3243 + Code2: SR + - Code: SVK + Name: Slovakia + Continent: Europe + Region: Eastern Europe + SurfaceArea: 49012.0 + IndepYear: 1993 + Population: 5398700 + LifeExpectancy: 73.7 + GNP: 20594.0 + GNPOld: 19452.0 + LocalName: Slovensko + GovernmentForm: Republic + HeadOfState: Rudolf Schuster + Capital: 3209 + Code2: SK + - Code: SVN + Name: Slovenia + Continent: Europe + Region: Southern Europe + SurfaceArea: 20256.0 + IndepYear: 1991 + Population: 1987800 + LifeExpectancy: 74.9 + GNP: 19756.0 + GNPOld: 18202.0 + LocalName: Slovenija + GovernmentForm: Republic + HeadOfState: Milan Kucan + Capital: 3212 + Code2: SI + - Code: SWE + Name: Sweden + Continent: Europe + Region: Nordic Countries + SurfaceArea: 449964.0 + IndepYear: 836 + Population: 8861400 + LifeExpectancy: 79.6 + GNP: 226492.0 + GNPOld: 227757.0 + LocalName: Sverige + GovernmentForm: Constitutional Monarchy + HeadOfState: Carl XVI Gustaf + Capital: 3048 + Code2: SE + - Code: SWZ + Name: Swaziland + Continent: Africa + Region: Southern Africa + SurfaceArea: 17364.0 + IndepYear: 1968 + Population: 1008000 + LifeExpectancy: 40.4 + GNP: 1206.0 + GNPOld: 1312.0 + LocalName: kaNgwane + GovernmentForm: Monarchy + HeadOfState: Mswati III + Capital: 3244 + Code2: SZ + - Code: SYC + Name: Seychelles + Continent: Africa + Region: Eastern Africa + SurfaceArea: 455.0 + IndepYear: 1976 + Population: 77000 + LifeExpectancy: 70.4 + GNP: 536.0 + GNPOld: 539.0 + LocalName: Sesel/Seychelles + GovernmentForm: Republic + HeadOfState: France-Albert René + Capital: 3206 + Code2: SC + - Code: SYR + Name: Syria + Continent: Asia + Region: Middle East + SurfaceArea: 185180.0 + IndepYear: 1941 + Population: 16125000 + LifeExpectancy: 68.5 + GNP: 65984.0 + GNPOld: 64926.0 + LocalName: Suriya + GovernmentForm: Republic + HeadOfState: Bashar al-Assad + Capital: 3250 + Code2: SY + - Code: TCA + Name: Turks and Caicos Islands + Continent: North America + Region: Caribbean + SurfaceArea: 430.0 + IndepYear: null + Population: 17000 + LifeExpectancy: 73.3 + GNP: 96.0 + GNPOld: null + LocalName: The Turks and Caicos Islands + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 3423 + Code2: TC + - Code: TCD + Name: Chad + Continent: Africa + Region: Central Africa + SurfaceArea: 1284000.0 + IndepYear: 1960 + Population: 7651000 + LifeExpectancy: 50.5 + GNP: 1208.0 + GNPOld: 1102.0 + LocalName: Tchad/Tshad + GovernmentForm: Republic + HeadOfState: Idriss Déby + Capital: 3337 + Code2: TD + - Code: TGO + Name: Togo + Continent: Africa + Region: Western Africa + SurfaceArea: 56785.0 + IndepYear: 1960 + Population: 4629000 + LifeExpectancy: 54.7 + GNP: 1449.0 + GNPOld: 1400.0 + LocalName: Togo + GovernmentForm: Republic + HeadOfState: Gnassingbé Eyadéma + Capital: 3332 + Code2: TG + - Code: THA + Name: Thailand + Continent: Asia + Region: Southeast Asia + SurfaceArea: 513115.0 + IndepYear: 1350 + Population: 61399000 + LifeExpectancy: 68.6 + GNP: 116416.0 + GNPOld: 153907.0 + LocalName: Prathet Thai + GovernmentForm: Constitutional Monarchy + HeadOfState: Bhumibol Adulyadej + Capital: 3320 + Code2: TH + - Code: TJK + Name: Tajikistan + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 143100.0 + IndepYear: 1991 + Population: 6188000 + LifeExpectancy: 64.1 + GNP: 1990.0 + GNPOld: 1056.0 + LocalName: Toçikiston + GovernmentForm: Republic + HeadOfState: Emomali Rahmonov + Capital: 3261 + Code2: TJ + - Code: TKL + Name: Tokelau + Continent: Oceania + Region: Polynesia + SurfaceArea: 12.0 + IndepYear: null + Population: 2000 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Tokelau + GovernmentForm: Nonmetropolitan Territory of New Zealand + HeadOfState: Elisabeth II + Capital: 3333 + Code2: TK + - Code: TKM + Name: Turkmenistan + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 488100.0 + IndepYear: 1991 + Population: 4459000 + LifeExpectancy: 60.9 + GNP: 4397.0 + GNPOld: 2000.0 + LocalName: Türkmenostan + GovernmentForm: Republic + HeadOfState: Saparmurad Nijazov + Capital: 3419 + Code2: TM + - Code: TMP + Name: East Timor + Continent: Asia + Region: Southeast Asia + SurfaceArea: 14874.0 + IndepYear: null + Population: 885000 + LifeExpectancy: 46.0 + GNP: 0.0 + GNPOld: null + LocalName: Timor Timur + GovernmentForm: Administrated by the UN + HeadOfState: José Alexandre Gusmão + Capital: 1522 + Code2: TP + - Code: TON + Name: Tonga + Continent: Oceania + Region: Polynesia + SurfaceArea: 650.0 + IndepYear: 1970 + Population: 99000 + LifeExpectancy: 67.9 + GNP: 146.0 + GNPOld: 170.0 + LocalName: Tonga + GovernmentForm: Monarchy + HeadOfState: Taufa'ahau Tupou IV + Capital: 3334 + Code2: TO + - Code: TTO + Name: Trinidad and Tobago + Continent: North America + Region: Caribbean + SurfaceArea: 5130.0 + IndepYear: 1962 + Population: 1295000 + LifeExpectancy: 68.0 + GNP: 6232.0 + GNPOld: 5867.0 + LocalName: Trinidad and Tobago + GovernmentForm: Republic + HeadOfState: Arthur N. R. Robinson + Capital: 3336 + Code2: TT + - Code: TUN + Name: Tunisia + Continent: Africa + Region: Northern Africa + SurfaceArea: 163610.0 + IndepYear: 1956 + Population: 9586000 + LifeExpectancy: 73.7 + GNP: 20026.0 + GNPOld: 18898.0 + LocalName: Tunis/Tunisie + GovernmentForm: Republic + HeadOfState: Zine al-Abidine Ben Ali + Capital: 3349 + Code2: TN + - Code: TUR + Name: Turkey + Continent: Asia + Region: Middle East + SurfaceArea: 774815.0 + IndepYear: 1923 + Population: 66591000 + LifeExpectancy: 71.0 + GNP: 210721.0 + GNPOld: 189122.0 + LocalName: Türkiye + GovernmentForm: Republic + HeadOfState: Ahmet Necdet Sezer + Capital: 3358 + Code2: TR + - Code: TUV + Name: Tuvalu + Continent: Oceania + Region: Polynesia + SurfaceArea: 26.0 + IndepYear: 1978 + Population: 12000 + LifeExpectancy: 66.3 + GNP: 6.0 + GNPOld: null + LocalName: Tuvalu + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 3424 + Code2: TV + - Code: TWN + Name: Taiwan + Continent: Asia + Region: Eastern Asia + SurfaceArea: 36188.0 + IndepYear: 1945 + Population: 22256000 + LifeExpectancy: 76.4 + GNP: 256254.0 + GNPOld: 263451.0 + LocalName: T’ai-wan + GovernmentForm: Republic + HeadOfState: Chen Shui-bian + Capital: 3263 + Code2: TW + - Code: TZA + Name: Tanzania + Continent: Africa + Region: Eastern Africa + SurfaceArea: 883749.0 + IndepYear: 1961 + Population: 33517000 + LifeExpectancy: 52.3 + GNP: 8005.0 + GNPOld: 7388.0 + LocalName: Tanzania + GovernmentForm: Republic + HeadOfState: Benjamin William Mkapa + Capital: 3306 + Code2: TZ + - Code: UGA + Name: Uganda + Continent: Africa + Region: Eastern Africa + SurfaceArea: 241038.0 + IndepYear: 1962 + Population: 21778000 + LifeExpectancy: 42.9 + GNP: 6313.0 + GNPOld: 6887.0 + LocalName: Uganda + GovernmentForm: Republic + HeadOfState: Yoweri Museveni + Capital: 3425 + Code2: UG + - Code: UKR + Name: Ukraine + Continent: Europe + Region: Eastern Europe + SurfaceArea: 603700.0 + IndepYear: 1991 + Population: 50456000 + LifeExpectancy: 66.0 + GNP: 42168.0 + GNPOld: 49677.0 + LocalName: Ukrajina + GovernmentForm: Republic + HeadOfState: Leonid Kutšma + Capital: 3426 + Code2: UA + - Code: UMI + Name: United States Minor Outlying Islands + Continent: Oceania + Region: Micronesia/Caribbean + SurfaceArea: 16.0 + IndepYear: null + Population: 0 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: United States Minor Outlying Islands + GovernmentForm: Dependent Territory of the US + HeadOfState: George W. Bush + Capital: null + Code2: UM + - Code: URY + Name: Uruguay + Continent: South America + Region: South America + SurfaceArea: 175016.0 + IndepYear: 1828 + Population: 3337000 + LifeExpectancy: 75.2 + GNP: 20831.0 + GNPOld: 19967.0 + LocalName: Uruguay + GovernmentForm: Republic + HeadOfState: Jorge Batlle Ibáñez + Capital: 3492 + Code2: UY + - Code: USA + Name: United States + Continent: North America + Region: North America + SurfaceArea: 9363520.0 + IndepYear: 1776 + Population: 278357000 + LifeExpectancy: 77.1 + GNP: 8510700.0 + GNPOld: 8110900.0 + LocalName: United States + GovernmentForm: Federal Republic + HeadOfState: George W. Bush + Capital: 3813 + Code2: US + - Code: UZB + Name: Uzbekistan + Continent: Asia + Region: Southern and Central Asia + SurfaceArea: 447400.0 + IndepYear: 1991 + Population: 24318000 + LifeExpectancy: 63.7 + GNP: 14194.0 + GNPOld: 21300.0 + LocalName: Uzbekiston + GovernmentForm: Republic + HeadOfState: Islam Karimov + Capital: 3503 + Code2: UZ + - Code: VAT + Name: Holy See (Vatican City State) + Continent: Europe + Region: Southern Europe + SurfaceArea: 0.4 + IndepYear: 1929 + Population: 1000 + LifeExpectancy: null + GNP: 9.0 + GNPOld: null + LocalName: Santa Sede/Città del Vaticano + GovernmentForm: Independent Church State + HeadOfState: Johannes Paavali II + Capital: 3538 + Code2: VA + - Code: VCT + Name: Saint Vincent and the Grenadines + Continent: North America + Region: Caribbean + SurfaceArea: 388.0 + IndepYear: 1979 + Population: 114000 + LifeExpectancy: 72.3 + GNP: 285.0 + GNPOld: null + LocalName: Saint Vincent and the Grenadines + GovernmentForm: Constitutional Monarchy + HeadOfState: Elisabeth II + Capital: 3066 + Code2: VC + - Code: VEN + Name: Venezuela + Continent: South America + Region: South America + SurfaceArea: 912050.0 + IndepYear: 1811 + Population: 24170000 + LifeExpectancy: 73.1 + GNP: 95023.0 + GNPOld: 88434.0 + LocalName: Venezuela + GovernmentForm: Federal Republic + HeadOfState: Hugo Chávez Frías + Capital: 3539 + Code2: VE + - Code: VGB + Name: Virgin Islands, British + Continent: North America + Region: Caribbean + SurfaceArea: 151.0 + IndepYear: null + Population: 21000 + LifeExpectancy: 75.4 + GNP: 612.0 + GNPOld: 573.0 + LocalName: British Virgin Islands + GovernmentForm: Dependent Territory of the UK + HeadOfState: Elisabeth II + Capital: 537 + Code2: VG + - Code: VIR + Name: Virgin Islands, U.S. + Continent: North America + Region: Caribbean + SurfaceArea: 347.0 + IndepYear: null + Population: 93000 + LifeExpectancy: 78.1 + GNP: 0.0 + GNPOld: null + LocalName: Virgin Islands of the United States + GovernmentForm: US Territory + HeadOfState: George W. Bush + Capital: 4067 + Code2: VI + - Code: VNM + Name: Vietnam + Continent: Asia + Region: Southeast Asia + SurfaceArea: 331689.0 + IndepYear: 1945 + Population: 79832000 + LifeExpectancy: 69.3 + GNP: 21929.0 + GNPOld: 22834.0 + LocalName: Viêt Nam + GovernmentForm: Socialistic Republic + HeadOfState: Trân Duc Luong + Capital: 3770 + Code2: VN + - Code: VUT + Name: Vanuatu + Continent: Oceania + Region: Melanesia + SurfaceArea: 12189.0 + IndepYear: 1980 + Population: 190000 + LifeExpectancy: 60.6 + GNP: 261.0 + GNPOld: 246.0 + LocalName: Vanuatu + GovernmentForm: Republic + HeadOfState: John Bani + Capital: 3537 + Code2: VU + - Code: WLF + Name: Wallis and Futuna + Continent: Oceania + Region: Polynesia + SurfaceArea: 200.0 + IndepYear: null + Population: 15000 + LifeExpectancy: null + GNP: 0.0 + GNPOld: null + LocalName: Wallis-et-Futuna + GovernmentForm: Nonmetropolitan Territory of France + HeadOfState: Jacques Chirac + Capital: 3536 + Code2: WF + - Code: WSM + Name: Samoa + Continent: Oceania + Region: Polynesia + SurfaceArea: 2831.0 + IndepYear: 1962 + Population: 180000 + LifeExpectancy: 69.2 + GNP: 141.0 + GNPOld: 157.0 + LocalName: Samoa + GovernmentForm: Parlementary Monarchy + HeadOfState: Malietoa Tanumafili II + Capital: 3169 + Code2: WS + - Code: YEM + Name: Yemen + Continent: Asia + Region: Middle East + SurfaceArea: 527968.0 + IndepYear: 1918 + Population: 18112000 + LifeExpectancy: 59.8 + GNP: 6041.0 + GNPOld: 5729.0 + LocalName: Al-Yaman + GovernmentForm: Republic + HeadOfState: Ali Abdallah Salih + Capital: 1780 + Code2: YE + - Code: YUG + Name: Yugoslavia + Continent: Europe + Region: Southern Europe + SurfaceArea: 102173.0 + IndepYear: 1918 + Population: 10640000 + LifeExpectancy: 72.4 + GNP: 17000.0 + GNPOld: null + LocalName: Jugoslavija + GovernmentForm: Federal Republic + HeadOfState: Vojislav Koštunica + Capital: 1792 + Code2: YU + - Code: ZAF + Name: South Africa + Continent: Africa + Region: Southern Africa + SurfaceArea: 1221037.0 + IndepYear: 1910 + Population: 40377000 + LifeExpectancy: 51.1 + GNP: 116729.0 + GNPOld: 129092.0 + LocalName: South Africa + GovernmentForm: Republic + HeadOfState: Thabo Mbeki + Capital: 716 + Code2: ZA + - Code: ZMB + Name: Zambia + Continent: Africa + Region: Eastern Africa + SurfaceArea: 752618.0 + IndepYear: 1964 + Population: 9169000 + LifeExpectancy: 37.2 + GNP: 3377.0 + GNPOld: 3922.0 + LocalName: Zambia + GovernmentForm: Republic + HeadOfState: Frederick Chiluba + Capital: 3162 + Code2: ZM + - Code: ZWE + Name: Zimbabwe + Continent: Africa + Region: Eastern Africa + SurfaceArea: 390757.0 + IndepYear: 1980 + Population: 11669000 + LifeExpectancy: 37.8 + GNP: 5951.0 + GNPOld: 8670.0 + LocalName: Zimbabwe + GovernmentForm: Republic + HeadOfState: Robert G. Mugabe + Capital: 4068 + Code2: ZW + - id: countryLanguage + columns: + - name: CountryCode + type: STRING + mode: REQUIRED + - name: Language + type: STRING + mode: REQUIRED + - name: IsOfficial + type: STRING + mode: REQUIRED + - name: Percentage + type: FLOAT + mode: REQUIRED + data: + - CountryCode: ABW + Language: Dutch + IsOfficial: T + Percentage: 5.3 + - CountryCode: ABW + Language: English + IsOfficial: F + Percentage: 9.5 + - CountryCode: ABW + Language: Papiamento + IsOfficial: F + Percentage: 76.7 + - CountryCode: ABW + Language: Spanish + IsOfficial: F + Percentage: 7.4 + - CountryCode: AFG + Language: Balochi + IsOfficial: F + Percentage: 0.9 + - CountryCode: AFG + Language: Dari + IsOfficial: T + Percentage: 32.1 + - CountryCode: AFG + Language: Pashto + IsOfficial: T + Percentage: 52.4 + - CountryCode: AFG + Language: Turkmenian + IsOfficial: F + Percentage: 1.9 + - CountryCode: AFG + Language: Uzbek + IsOfficial: F + Percentage: 8.8 + - CountryCode: AGO + Language: Ambo + IsOfficial: F + Percentage: 2.4 + - CountryCode: AGO + Language: Chokwe + IsOfficial: F + Percentage: 4.2 + - CountryCode: AGO + Language: Kongo + IsOfficial: F + Percentage: 13.2 + - CountryCode: AGO + Language: Luchazi + IsOfficial: F + Percentage: 2.4 + - CountryCode: AGO + Language: Luimbe-nganguela + IsOfficial: F + Percentage: 5.4 + - CountryCode: AGO + Language: Luvale + IsOfficial: F + Percentage: 3.6 + - CountryCode: AGO + Language: Mbundu + IsOfficial: F + Percentage: 21.6 + - CountryCode: AGO + Language: Nyaneka-nkhumbi + IsOfficial: F + Percentage: 5.4 + - CountryCode: AGO + Language: Ovimbundu + IsOfficial: F + Percentage: 37.2 + - CountryCode: AIA + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: ALB + Language: Albaniana + IsOfficial: T + Percentage: 97.9 + - CountryCode: ALB + Language: Greek + IsOfficial: F + Percentage: 1.8 + - CountryCode: ALB + Language: Macedonian + IsOfficial: F + Percentage: 0.1 + - CountryCode: AND + Language: Catalan + IsOfficial: T + Percentage: 32.3 + - CountryCode: AND + Language: French + IsOfficial: F + Percentage: 6.2 + - CountryCode: AND + Language: Portuguese + IsOfficial: F + Percentage: 10.8 + - CountryCode: AND + Language: Spanish + IsOfficial: F + Percentage: 44.6 + - CountryCode: ANT + Language: Dutch + IsOfficial: T + Percentage: 0.0 + - CountryCode: ANT + Language: English + IsOfficial: F + Percentage: 7.8 + - CountryCode: ANT + Language: Papiamento + IsOfficial: T + Percentage: 86.2 + - CountryCode: ARE + Language: Arabic + IsOfficial: T + Percentage: 42.0 + - CountryCode: ARE + Language: Hindi + IsOfficial: F + Percentage: 0.0 + - CountryCode: ARG + Language: Indian Languages + IsOfficial: F + Percentage: 0.3 + - CountryCode: ARG + Language: Italian + IsOfficial: F + Percentage: 1.7 + - CountryCode: ARG + Language: Spanish + IsOfficial: T + Percentage: 96.8 + - CountryCode: ARM + Language: Armenian + IsOfficial: T + Percentage: 93.4 + - CountryCode: ARM + Language: Azerbaijani + IsOfficial: F + Percentage: 2.6 + - CountryCode: ASM + Language: English + IsOfficial: T + Percentage: 3.1 + - CountryCode: ASM + Language: Samoan + IsOfficial: T + Percentage: 90.6 + - CountryCode: ASM + Language: Tongan + IsOfficial: F + Percentage: 3.1 + - CountryCode: ATG + Language: Creole English + IsOfficial: F + Percentage: 95.7 + - CountryCode: ATG + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: AUS + Language: Arabic + IsOfficial: F + Percentage: 1.0 + - CountryCode: AUS + Language: Canton Chinese + IsOfficial: F + Percentage: 1.1 + - CountryCode: AUS + Language: English + IsOfficial: T + Percentage: 81.2 + - CountryCode: AUS + Language: German + IsOfficial: F + Percentage: 0.6 + - CountryCode: AUS + Language: Greek + IsOfficial: F + Percentage: 1.6 + - CountryCode: AUS + Language: Italian + IsOfficial: F + Percentage: 2.2 + - CountryCode: AUS + Language: Serbo-Croatian + IsOfficial: F + Percentage: 0.6 + - CountryCode: AUS + Language: Vietnamese + IsOfficial: F + Percentage: 0.8 + - CountryCode: AUT + Language: Czech + IsOfficial: F + Percentage: 0.2 + - CountryCode: AUT + Language: German + IsOfficial: T + Percentage: 92.0 + - CountryCode: AUT + Language: Hungarian + IsOfficial: F + Percentage: 0.4 + - CountryCode: AUT + Language: Polish + IsOfficial: F + Percentage: 0.2 + - CountryCode: AUT + Language: Romanian + IsOfficial: F + Percentage: 0.2 + - CountryCode: AUT + Language: Serbo-Croatian + IsOfficial: F + Percentage: 2.2 + - CountryCode: AUT + Language: Slovene + IsOfficial: F + Percentage: 0.4 + - CountryCode: AUT + Language: Turkish + IsOfficial: F + Percentage: 1.5 + - CountryCode: AZE + Language: Armenian + IsOfficial: F + Percentage: 2.0 + - CountryCode: AZE + Language: Azerbaijani + IsOfficial: T + Percentage: 89.0 + - CountryCode: AZE + Language: Lezgian + IsOfficial: F + Percentage: 2.3 + - CountryCode: AZE + Language: Russian + IsOfficial: F + Percentage: 3.0 + - CountryCode: BDI + Language: French + IsOfficial: T + Percentage: 0.0 + - CountryCode: BDI + Language: Kirundi + IsOfficial: T + Percentage: 98.1 + - CountryCode: BDI + Language: Swahili + IsOfficial: F + Percentage: 0.0 + - CountryCode: BEL + Language: Arabic + IsOfficial: F + Percentage: 1.6 + - CountryCode: BEL + Language: Dutch + IsOfficial: T + Percentage: 59.2 + - CountryCode: BEL + Language: French + IsOfficial: T + Percentage: 32.6 + - CountryCode: BEL + Language: German + IsOfficial: T + Percentage: 1.0 + - CountryCode: BEL + Language: Italian + IsOfficial: F + Percentage: 2.4 + - CountryCode: BEL + Language: Turkish + IsOfficial: F + Percentage: 0.9 + - CountryCode: BEN + Language: Adja + IsOfficial: F + Percentage: 11.1 + - CountryCode: BEN + Language: Aizo + IsOfficial: F + Percentage: 8.7 + - CountryCode: BEN + Language: Bariba + IsOfficial: F + Percentage: 8.7 + - CountryCode: BEN + Language: Fon + IsOfficial: F + Percentage: 39.8 + - CountryCode: BEN + Language: Ful + IsOfficial: F + Percentage: 5.6 + - CountryCode: BEN + Language: Joruba + IsOfficial: F + Percentage: 12.2 + - CountryCode: BEN + Language: Somba + IsOfficial: F + Percentage: 6.7 + - CountryCode: BFA + Language: Busansi + IsOfficial: F + Percentage: 3.5 + - CountryCode: BFA + Language: Dagara + IsOfficial: F + Percentage: 3.1 + - CountryCode: BFA + Language: Dyula + IsOfficial: F + Percentage: 2.6 + - CountryCode: BFA + Language: Ful + IsOfficial: F + Percentage: 9.7 + - CountryCode: BFA + Language: Gurma + IsOfficial: F + Percentage: 5.7 + - CountryCode: BFA + Language: Mossi + IsOfficial: F + Percentage: 50.2 + - CountryCode: BGD + Language: Bengali + IsOfficial: T + Percentage: 97.7 + - CountryCode: BGD + Language: Chakma + IsOfficial: F + Percentage: 0.4 + - CountryCode: BGD + Language: Garo + IsOfficial: F + Percentage: 0.1 + - CountryCode: BGD + Language: Khasi + IsOfficial: F + Percentage: 0.1 + - CountryCode: BGD + Language: Marma + IsOfficial: F + Percentage: 0.2 + - CountryCode: BGD + Language: Santhali + IsOfficial: F + Percentage: 0.1 + - CountryCode: BGD + Language: Tripuri + IsOfficial: F + Percentage: 0.1 + - CountryCode: BGR + Language: Bulgariana + IsOfficial: T + Percentage: 83.2 + - CountryCode: BGR + Language: Macedonian + IsOfficial: F + Percentage: 2.6 + - CountryCode: BGR + Language: Romani + IsOfficial: F + Percentage: 3.7 + - CountryCode: BGR + Language: Turkish + IsOfficial: F + Percentage: 9.4 + - CountryCode: BHR + Language: Arabic + IsOfficial: T + Percentage: 67.7 + - CountryCode: BHR + Language: English + IsOfficial: F + Percentage: 0.0 + - CountryCode: BHS + Language: Creole English + IsOfficial: F + Percentage: 89.7 + - CountryCode: BHS + Language: Creole French + IsOfficial: F + Percentage: 10.3 + - CountryCode: BIH + Language: Serbo-Croatian + IsOfficial: T + Percentage: 99.2 + - CountryCode: BLR + Language: Belorussian + IsOfficial: T + Percentage: 65.6 + - CountryCode: BLR + Language: Polish + IsOfficial: F + Percentage: 0.6 + - CountryCode: BLR + Language: Russian + IsOfficial: T + Percentage: 32.0 + - CountryCode: BLR + Language: Ukrainian + IsOfficial: F + Percentage: 1.3 + - CountryCode: BLZ + Language: English + IsOfficial: T + Percentage: 50.8 + - CountryCode: BLZ + Language: Garifuna + IsOfficial: F + Percentage: 6.8 + - CountryCode: BLZ + Language: Maya Languages + IsOfficial: F + Percentage: 9.6 + - CountryCode: BLZ + Language: Spanish + IsOfficial: F + Percentage: 31.6 + - CountryCode: BMU + Language: English + IsOfficial: T + Percentage: 100.0 + - CountryCode: BOL + Language: Aimará + IsOfficial: T + Percentage: 3.2 + - CountryCode: BOL + Language: Guaraní + IsOfficial: F + Percentage: 0.1 + - CountryCode: BOL + Language: Ketšua + IsOfficial: T + Percentage: 8.1 + - CountryCode: BOL + Language: Spanish + IsOfficial: T + Percentage: 87.7 + - CountryCode: BRA + Language: German + IsOfficial: F + Percentage: 0.5 + - CountryCode: BRA + Language: Indian Languages + IsOfficial: F + Percentage: 0.2 + - CountryCode: BRA + Language: Italian + IsOfficial: F + Percentage: 0.4 + - CountryCode: BRA + Language: Japanese + IsOfficial: F + Percentage: 0.4 + - CountryCode: BRA + Language: Portuguese + IsOfficial: T + Percentage: 97.5 + - CountryCode: BRB + Language: Bajan + IsOfficial: F + Percentage: 95.1 + - CountryCode: BRB + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: BRN + Language: Chinese + IsOfficial: F + Percentage: 9.3 + - CountryCode: BRN + Language: English + IsOfficial: F + Percentage: 3.1 + - CountryCode: BRN + Language: Malay + IsOfficial: T + Percentage: 45.5 + - CountryCode: BRN + Language: Malay-English + IsOfficial: F + Percentage: 28.8 + - CountryCode: BTN + Language: Asami + IsOfficial: F + Percentage: 15.2 + - CountryCode: BTN + Language: Dzongkha + IsOfficial: T + Percentage: 50.0 + - CountryCode: BTN + Language: Nepali + IsOfficial: F + Percentage: 34.8 + - CountryCode: BWA + Language: Khoekhoe + IsOfficial: F + Percentage: 2.5 + - CountryCode: BWA + Language: Ndebele + IsOfficial: F + Percentage: 1.3 + - CountryCode: BWA + Language: San + IsOfficial: F + Percentage: 3.5 + - CountryCode: BWA + Language: Shona + IsOfficial: F + Percentage: 12.3 + - CountryCode: BWA + Language: Tswana + IsOfficial: F + Percentage: 75.5 + - CountryCode: CAF + Language: Banda + IsOfficial: F + Percentage: 23.5 + - CountryCode: CAF + Language: Gbaya + IsOfficial: F + Percentage: 23.8 + - CountryCode: CAF + Language: Mandjia + IsOfficial: F + Percentage: 14.8 + - CountryCode: CAF + Language: Mbum + IsOfficial: F + Percentage: 6.4 + - CountryCode: CAF + Language: Ngbaka + IsOfficial: F + Percentage: 7.5 + - CountryCode: CAF + Language: Sara + IsOfficial: F + Percentage: 6.4 + - CountryCode: CAN + Language: Chinese + IsOfficial: F + Percentage: 2.5 + - CountryCode: CAN + Language: Dutch + IsOfficial: F + Percentage: 0.5 + - CountryCode: CAN + Language: English + IsOfficial: T + Percentage: 60.4 + - CountryCode: CAN + Language: Eskimo Languages + IsOfficial: F + Percentage: 0.1 + - CountryCode: CAN + Language: French + IsOfficial: T + Percentage: 23.4 + - CountryCode: CAN + Language: German + IsOfficial: F + Percentage: 1.6 + - CountryCode: CAN + Language: Italian + IsOfficial: F + Percentage: 1.7 + - CountryCode: CAN + Language: Polish + IsOfficial: F + Percentage: 0.7 + - CountryCode: CAN + Language: Portuguese + IsOfficial: F + Percentage: 0.7 + - CountryCode: CAN + Language: Punjabi + IsOfficial: F + Percentage: 0.7 + - CountryCode: CAN + Language: Spanish + IsOfficial: F + Percentage: 0.7 + - CountryCode: CAN + Language: Ukrainian + IsOfficial: F + Percentage: 0.6 + - CountryCode: CCK + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: CCK + Language: Malay + IsOfficial: F + Percentage: 0.0 + - CountryCode: CHE + Language: French + IsOfficial: T + Percentage: 19.2 + - CountryCode: CHE + Language: German + IsOfficial: T + Percentage: 63.6 + - CountryCode: CHE + Language: Italian + IsOfficial: T + Percentage: 7.7 + - CountryCode: CHE + Language: Romansh + IsOfficial: T + Percentage: 0.6 + - CountryCode: CHL + Language: Aimará + IsOfficial: F + Percentage: 0.5 + - CountryCode: CHL + Language: Araucan + IsOfficial: F + Percentage: 9.6 + - CountryCode: CHL + Language: Rapa nui + IsOfficial: F + Percentage: 0.2 + - CountryCode: CHL + Language: Spanish + IsOfficial: T + Percentage: 89.7 + - CountryCode: CHN + Language: Chinese + IsOfficial: T + Percentage: 92.0 + - CountryCode: CHN + Language: Dong + IsOfficial: F + Percentage: 0.2 + - CountryCode: CHN + Language: Hui + IsOfficial: F + Percentage: 0.8 + - CountryCode: CHN + Language: Mantšu + IsOfficial: F + Percentage: 0.9 + - CountryCode: CHN + Language: Miao + IsOfficial: F + Percentage: 0.7 + - CountryCode: CHN + Language: Mongolian + IsOfficial: F + Percentage: 0.4 + - CountryCode: CHN + Language: Puyi + IsOfficial: F + Percentage: 0.2 + - CountryCode: CHN + Language: Tibetan + IsOfficial: F + Percentage: 0.4 + - CountryCode: CHN + Language: Tujia + IsOfficial: F + Percentage: 0.5 + - CountryCode: CHN + Language: Uighur + IsOfficial: F + Percentage: 0.6 + - CountryCode: CHN + Language: Yi + IsOfficial: F + Percentage: 0.6 + - CountryCode: CHN + Language: Zhuang + IsOfficial: F + Percentage: 1.4 + - CountryCode: CIV + Language: '[South]Mande' + IsOfficial: F + Percentage: 7.7 + - CountryCode: CIV + Language: Akan + IsOfficial: F + Percentage: 30.0 + - CountryCode: CIV + Language: Gur + IsOfficial: F + Percentage: 11.7 + - CountryCode: CIV + Language: Kru + IsOfficial: F + Percentage: 10.5 + - CountryCode: CIV + Language: Malinke + IsOfficial: F + Percentage: 11.4 + - CountryCode: CMR + Language: Bamileke-bamum + IsOfficial: F + Percentage: 18.6 + - CountryCode: CMR + Language: Duala + IsOfficial: F + Percentage: 10.9 + - CountryCode: CMR + Language: Fang + IsOfficial: F + Percentage: 19.7 + - CountryCode: CMR + Language: Ful + IsOfficial: F + Percentage: 9.6 + - CountryCode: CMR + Language: Maka + IsOfficial: F + Percentage: 4.9 + - CountryCode: CMR + Language: Mandara + IsOfficial: F + Percentage: 5.7 + - CountryCode: CMR + Language: Masana + IsOfficial: F + Percentage: 3.9 + - CountryCode: CMR + Language: Tikar + IsOfficial: F + Percentage: 7.4 + - CountryCode: COD + Language: Boa + IsOfficial: F + Percentage: 2.3 + - CountryCode: COD + Language: Chokwe + IsOfficial: F + Percentage: 1.8 + - CountryCode: COD + Language: Kongo + IsOfficial: F + Percentage: 16.0 + - CountryCode: COD + Language: Luba + IsOfficial: F + Percentage: 18.0 + - CountryCode: COD + Language: Mongo + IsOfficial: F + Percentage: 13.5 + - CountryCode: COD + Language: Ngala and Bangi + IsOfficial: F + Percentage: 5.8 + - CountryCode: COD + Language: Rundi + IsOfficial: F + Percentage: 3.8 + - CountryCode: COD + Language: Rwanda + IsOfficial: F + Percentage: 10.3 + - CountryCode: COD + Language: Teke + IsOfficial: F + Percentage: 2.7 + - CountryCode: COD + Language: Zande + IsOfficial: F + Percentage: 6.1 + - CountryCode: COG + Language: Kongo + IsOfficial: F + Percentage: 51.5 + - CountryCode: COG + Language: Mbete + IsOfficial: F + Percentage: 4.8 + - CountryCode: COG + Language: Mboshi + IsOfficial: F + Percentage: 11.4 + - CountryCode: COG + Language: Punu + IsOfficial: F + Percentage: 2.9 + - CountryCode: COG + Language: Sango + IsOfficial: F + Percentage: 2.6 + - CountryCode: COG + Language: Teke + IsOfficial: F + Percentage: 17.3 + - CountryCode: COK + Language: English + IsOfficial: F + Percentage: 0.0 + - CountryCode: COK + Language: Maori + IsOfficial: T + Percentage: 0.0 + - CountryCode: COL + Language: Arawakan + IsOfficial: F + Percentage: 0.1 + - CountryCode: COL + Language: Caribbean + IsOfficial: F + Percentage: 0.1 + - CountryCode: COL + Language: Chibcha + IsOfficial: F + Percentage: 0.4 + - CountryCode: COL + Language: Creole English + IsOfficial: F + Percentage: 0.1 + - CountryCode: COL + Language: Spanish + IsOfficial: T + Percentage: 99.0 + - CountryCode: COM + Language: Comorian + IsOfficial: T + Percentage: 75.0 + - CountryCode: COM + Language: Comorian-Arabic + IsOfficial: F + Percentage: 1.6 + - CountryCode: COM + Language: Comorian-French + IsOfficial: F + Percentage: 12.9 + - CountryCode: COM + Language: Comorian-madagassi + IsOfficial: F + Percentage: 5.5 + - CountryCode: COM + Language: Comorian-Swahili + IsOfficial: F + Percentage: 0.5 + - CountryCode: CPV + Language: Crioulo + IsOfficial: F + Percentage: 100.0 + - CountryCode: CPV + Language: Portuguese + IsOfficial: T + Percentage: 0.0 + - CountryCode: CRI + Language: Chibcha + IsOfficial: F + Percentage: 0.3 + - CountryCode: CRI + Language: Chinese + IsOfficial: F + Percentage: 0.2 + - CountryCode: CRI + Language: Creole English + IsOfficial: F + Percentage: 2.0 + - CountryCode: CRI + Language: Spanish + IsOfficial: T + Percentage: 97.5 + - CountryCode: CUB + Language: Spanish + IsOfficial: T + Percentage: 100.0 + - CountryCode: CXR + Language: Chinese + IsOfficial: F + Percentage: 0.0 + - CountryCode: CXR + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: CYM + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: CYP + Language: Greek + IsOfficial: T + Percentage: 74.1 + - CountryCode: CYP + Language: Turkish + IsOfficial: T + Percentage: 22.4 + - CountryCode: CZE + Language: Czech + IsOfficial: T + Percentage: 81.2 + - CountryCode: CZE + Language: German + IsOfficial: F + Percentage: 0.5 + - CountryCode: CZE + Language: Hungarian + IsOfficial: F + Percentage: 0.2 + - CountryCode: CZE + Language: Moravian + IsOfficial: F + Percentage: 12.9 + - CountryCode: CZE + Language: Polish + IsOfficial: F + Percentage: 0.6 + - CountryCode: CZE + Language: Romani + IsOfficial: F + Percentage: 0.3 + - CountryCode: CZE + Language: Silesiana + IsOfficial: F + Percentage: 0.4 + - CountryCode: CZE + Language: Slovak + IsOfficial: F + Percentage: 3.1 + - CountryCode: DEU + Language: German + IsOfficial: T + Percentage: 91.3 + - CountryCode: DEU + Language: Greek + IsOfficial: F + Percentage: 0.4 + - CountryCode: DEU + Language: Italian + IsOfficial: F + Percentage: 0.7 + - CountryCode: DEU + Language: Polish + IsOfficial: F + Percentage: 0.3 + - CountryCode: DEU + Language: Southern Slavic Languages + IsOfficial: F + Percentage: 1.4 + - CountryCode: DEU + Language: Turkish + IsOfficial: F + Percentage: 2.6 + - CountryCode: DJI + Language: Afar + IsOfficial: F + Percentage: 34.8 + - CountryCode: DJI + Language: Arabic + IsOfficial: T + Percentage: 10.6 + - CountryCode: DJI + Language: Somali + IsOfficial: F + Percentage: 43.9 + - CountryCode: DMA + Language: Creole English + IsOfficial: F + Percentage: 100.0 + - CountryCode: DMA + Language: Creole French + IsOfficial: F + Percentage: 0.0 + - CountryCode: DNK + Language: Arabic + IsOfficial: F + Percentage: 0.7 + - CountryCode: DNK + Language: Danish + IsOfficial: T + Percentage: 93.5 + - CountryCode: DNK + Language: English + IsOfficial: F + Percentage: 0.3 + - CountryCode: DNK + Language: German + IsOfficial: F + Percentage: 0.5 + - CountryCode: DNK + Language: Norwegian + IsOfficial: F + Percentage: 0.3 + - CountryCode: DNK + Language: Swedish + IsOfficial: F + Percentage: 0.3 + - CountryCode: DNK + Language: Turkish + IsOfficial: F + Percentage: 0.8 + - CountryCode: DOM + Language: Creole French + IsOfficial: F + Percentage: 2.0 + - CountryCode: DOM + Language: Spanish + IsOfficial: T + Percentage: 98.0 + - CountryCode: DZA + Language: Arabic + IsOfficial: T + Percentage: 86.0 + - CountryCode: DZA + Language: Berberi + IsOfficial: F + Percentage: 14.0 + - CountryCode: ECU + Language: Ketšua + IsOfficial: F + Percentage: 7.0 + - CountryCode: ECU + Language: Spanish + IsOfficial: T + Percentage: 93.0 + - CountryCode: EGY + Language: Arabic + IsOfficial: T + Percentage: 98.8 + - CountryCode: EGY + Language: Sinaberberi + IsOfficial: F + Percentage: 0.0 + - CountryCode: ERI + Language: Afar + IsOfficial: F + Percentage: 4.3 + - CountryCode: ERI + Language: Bilin + IsOfficial: F + Percentage: 3.0 + - CountryCode: ERI + Language: Hadareb + IsOfficial: F + Percentage: 3.8 + - CountryCode: ERI + Language: Saho + IsOfficial: F + Percentage: 3.0 + - CountryCode: ERI + Language: Tigre + IsOfficial: F + Percentage: 31.7 + - CountryCode: ERI + Language: Tigrinja + IsOfficial: T + Percentage: 49.1 + - CountryCode: ESH + Language: Arabic + IsOfficial: T + Percentage: 100.0 + - CountryCode: ESP + Language: Basque + IsOfficial: F + Percentage: 1.6 + - CountryCode: ESP + Language: Catalan + IsOfficial: F + Percentage: 16.9 + - CountryCode: ESP + Language: Galecian + IsOfficial: F + Percentage: 6.4 + - CountryCode: ESP + Language: Spanish + IsOfficial: T + Percentage: 74.4 + - CountryCode: EST + Language: Belorussian + IsOfficial: F + Percentage: 1.4 + - CountryCode: EST + Language: Estonian + IsOfficial: T + Percentage: 65.3 + - CountryCode: EST + Language: Finnish + IsOfficial: F + Percentage: 0.7 + - CountryCode: EST + Language: Russian + IsOfficial: F + Percentage: 27.8 + - CountryCode: EST + Language: Ukrainian + IsOfficial: F + Percentage: 2.8 + - CountryCode: ETH + Language: Amhara + IsOfficial: F + Percentage: 30.0 + - CountryCode: ETH + Language: Gurage + IsOfficial: F + Percentage: 4.7 + - CountryCode: ETH + Language: Oromo + IsOfficial: F + Percentage: 31.0 + - CountryCode: ETH + Language: Sidamo + IsOfficial: F + Percentage: 3.2 + - CountryCode: ETH + Language: Somali + IsOfficial: F + Percentage: 4.1 + - CountryCode: ETH + Language: Tigrinja + IsOfficial: F + Percentage: 7.2 + - CountryCode: ETH + Language: Walaita + IsOfficial: F + Percentage: 2.8 + - CountryCode: FIN + Language: Estonian + IsOfficial: F + Percentage: 0.2 + - CountryCode: FIN + Language: Finnish + IsOfficial: T + Percentage: 92.7 + - CountryCode: FIN + Language: Russian + IsOfficial: F + Percentage: 0.4 + - CountryCode: FIN + Language: Saame + IsOfficial: F + Percentage: 0.0 + - CountryCode: FIN + Language: Swedish + IsOfficial: T + Percentage: 5.7 + - CountryCode: FJI + Language: Fijian + IsOfficial: T + Percentage: 50.8 + - CountryCode: FJI + Language: Hindi + IsOfficial: F + Percentage: 43.7 + - CountryCode: FLK + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: FRA + Language: Arabic + IsOfficial: F + Percentage: 2.5 + - CountryCode: FRA + Language: French + IsOfficial: T + Percentage: 93.6 + - CountryCode: FRA + Language: Italian + IsOfficial: F + Percentage: 0.4 + - CountryCode: FRA + Language: Portuguese + IsOfficial: F + Percentage: 1.2 + - CountryCode: FRA + Language: Spanish + IsOfficial: F + Percentage: 0.4 + - CountryCode: FRA + Language: Turkish + IsOfficial: F + Percentage: 0.4 + - CountryCode: FRO + Language: Danish + IsOfficial: T + Percentage: 0.0 + - CountryCode: FRO + Language: Faroese + IsOfficial: T + Percentage: 100.0 + - CountryCode: FSM + Language: Kosrean + IsOfficial: F + Percentage: 7.3 + - CountryCode: FSM + Language: Mortlock + IsOfficial: F + Percentage: 7.6 + - CountryCode: FSM + Language: Pohnpei + IsOfficial: F + Percentage: 23.8 + - CountryCode: FSM + Language: Trukese + IsOfficial: F + Percentage: 41.6 + - CountryCode: FSM + Language: Wolea + IsOfficial: F + Percentage: 3.7 + - CountryCode: FSM + Language: Yap + IsOfficial: F + Percentage: 5.8 + - CountryCode: GAB + Language: Fang + IsOfficial: F + Percentage: 35.8 + - CountryCode: GAB + Language: Mbete + IsOfficial: F + Percentage: 13.8 + - CountryCode: GAB + Language: Mpongwe + IsOfficial: F + Percentage: 14.6 + - CountryCode: GAB + Language: Punu-sira-nzebi + IsOfficial: F + Percentage: 17.1 + - CountryCode: GBR + Language: English + IsOfficial: T + Percentage: 97.3 + - CountryCode: GBR + Language: Gaeli + IsOfficial: F + Percentage: 0.1 + - CountryCode: GBR + Language: Kymri + IsOfficial: F + Percentage: 0.9 + - CountryCode: GEO + Language: Abhyasi + IsOfficial: F + Percentage: 1.7 + - CountryCode: GEO + Language: Armenian + IsOfficial: F + Percentage: 6.8 + - CountryCode: GEO + Language: Azerbaijani + IsOfficial: F + Percentage: 5.5 + - CountryCode: GEO + Language: Georgiana + IsOfficial: T + Percentage: 71.7 + - CountryCode: GEO + Language: Osseetti + IsOfficial: F + Percentage: 2.4 + - CountryCode: GEO + Language: Russian + IsOfficial: F + Percentage: 8.8 + - CountryCode: GHA + Language: Akan + IsOfficial: F + Percentage: 52.4 + - CountryCode: GHA + Language: Ewe + IsOfficial: F + Percentage: 11.9 + - CountryCode: GHA + Language: Ga-adangme + IsOfficial: F + Percentage: 7.8 + - CountryCode: GHA + Language: Gurma + IsOfficial: F + Percentage: 3.3 + - CountryCode: GHA + Language: Joruba + IsOfficial: F + Percentage: 1.3 + - CountryCode: GHA + Language: Mossi + IsOfficial: F + Percentage: 15.8 + - CountryCode: GIB + Language: Arabic + IsOfficial: F + Percentage: 7.4 + - CountryCode: GIB + Language: English + IsOfficial: T + Percentage: 88.9 + - CountryCode: GIN + Language: Ful + IsOfficial: F + Percentage: 38.6 + - CountryCode: GIN + Language: Kissi + IsOfficial: F + Percentage: 6.0 + - CountryCode: GIN + Language: Kpelle + IsOfficial: F + Percentage: 4.6 + - CountryCode: GIN + Language: Loma + IsOfficial: F + Percentage: 2.3 + - CountryCode: GIN + Language: Malinke + IsOfficial: F + Percentage: 23.2 + - CountryCode: GIN + Language: Susu + IsOfficial: F + Percentage: 11.0 + - CountryCode: GIN + Language: Yalunka + IsOfficial: F + Percentage: 2.9 + - CountryCode: GLP + Language: Creole French + IsOfficial: F + Percentage: 95.0 + - CountryCode: GLP + Language: French + IsOfficial: T + Percentage: 0.0 + - CountryCode: GMB + Language: Diola + IsOfficial: F + Percentage: 9.2 + - CountryCode: GMB + Language: Ful + IsOfficial: F + Percentage: 16.2 + - CountryCode: GMB + Language: Malinke + IsOfficial: F + Percentage: 34.1 + - CountryCode: GMB + Language: Soninke + IsOfficial: F + Percentage: 7.6 + - CountryCode: GMB + Language: Wolof + IsOfficial: F + Percentage: 12.6 + - CountryCode: GNB + Language: Balante + IsOfficial: F + Percentage: 14.6 + - CountryCode: GNB + Language: Crioulo + IsOfficial: F + Percentage: 36.4 + - CountryCode: GNB + Language: Ful + IsOfficial: F + Percentage: 16.6 + - CountryCode: GNB + Language: Malinke + IsOfficial: F + Percentage: 6.9 + - CountryCode: GNB + Language: Mandyako + IsOfficial: F + Percentage: 4.9 + - CountryCode: GNB + Language: Portuguese + IsOfficial: T + Percentage: 8.1 + - CountryCode: GNQ + Language: Bubi + IsOfficial: F + Percentage: 8.7 + - CountryCode: GNQ + Language: Fang + IsOfficial: F + Percentage: 84.8 + - CountryCode: GRC + Language: Greek + IsOfficial: T + Percentage: 98.5 + - CountryCode: GRC + Language: Turkish + IsOfficial: F + Percentage: 0.9 + - CountryCode: GRD + Language: Creole English + IsOfficial: F + Percentage: 100.0 + - CountryCode: GRL + Language: Danish + IsOfficial: T + Percentage: 12.5 + - CountryCode: GRL + Language: Greenlandic + IsOfficial: T + Percentage: 87.5 + - CountryCode: GTM + Language: Cakchiquel + IsOfficial: F + Percentage: 8.9 + - CountryCode: GTM + Language: Kekchí + IsOfficial: F + Percentage: 4.9 + - CountryCode: GTM + Language: Mam + IsOfficial: F + Percentage: 2.7 + - CountryCode: GTM + Language: Quiché + IsOfficial: F + Percentage: 10.1 + - CountryCode: GTM + Language: Spanish + IsOfficial: T + Percentage: 64.7 + - CountryCode: GUF + Language: Creole French + IsOfficial: F + Percentage: 94.3 + - CountryCode: GUF + Language: Indian Languages + IsOfficial: F + Percentage: 1.9 + - CountryCode: GUM + Language: Chamorro + IsOfficial: T + Percentage: 29.6 + - CountryCode: GUM + Language: English + IsOfficial: T + Percentage: 37.5 + - CountryCode: GUM + Language: Japanese + IsOfficial: F + Percentage: 2.0 + - CountryCode: GUM + Language: Korean + IsOfficial: F + Percentage: 3.3 + - CountryCode: GUM + Language: Philippene Languages + IsOfficial: F + Percentage: 19.7 + - CountryCode: GUY + Language: Arawakan + IsOfficial: F + Percentage: 1.4 + - CountryCode: GUY + Language: Caribbean + IsOfficial: F + Percentage: 2.2 + - CountryCode: GUY + Language: Creole English + IsOfficial: F + Percentage: 96.4 + - CountryCode: HKG + Language: Canton Chinese + IsOfficial: F + Percentage: 88.7 + - CountryCode: HKG + Language: Chiu chau + IsOfficial: F + Percentage: 1.4 + - CountryCode: HKG + Language: English + IsOfficial: T + Percentage: 2.2 + - CountryCode: HKG + Language: Fukien + IsOfficial: F + Percentage: 1.9 + - CountryCode: HKG + Language: Hakka + IsOfficial: F + Percentage: 1.6 + - CountryCode: HND + Language: Creole English + IsOfficial: F + Percentage: 0.2 + - CountryCode: HND + Language: Garifuna + IsOfficial: F + Percentage: 1.3 + - CountryCode: HND + Language: Miskito + IsOfficial: F + Percentage: 0.2 + - CountryCode: HND + Language: Spanish + IsOfficial: T + Percentage: 97.2 + - CountryCode: HRV + Language: Serbo-Croatian + IsOfficial: T + Percentage: 95.9 + - CountryCode: HRV + Language: Slovene + IsOfficial: F + Percentage: 0.0 + - CountryCode: HTI + Language: French + IsOfficial: T + Percentage: 0.0 + - CountryCode: HTI + Language: Haiti Creole + IsOfficial: F + Percentage: 100.0 + - CountryCode: HUN + Language: German + IsOfficial: F + Percentage: 0.4 + - CountryCode: HUN + Language: Hungarian + IsOfficial: T + Percentage: 98.5 + - CountryCode: HUN + Language: Romani + IsOfficial: F + Percentage: 0.5 + - CountryCode: HUN + Language: Romanian + IsOfficial: F + Percentage: 0.1 + - CountryCode: HUN + Language: Serbo-Croatian + IsOfficial: F + Percentage: 0.2 + - CountryCode: HUN + Language: Slovak + IsOfficial: F + Percentage: 0.1 + - CountryCode: IDN + Language: Bali + IsOfficial: F + Percentage: 1.7 + - CountryCode: IDN + Language: Banja + IsOfficial: F + Percentage: 1.8 + - CountryCode: IDN + Language: Batakki + IsOfficial: F + Percentage: 2.2 + - CountryCode: IDN + Language: Bugi + IsOfficial: F + Percentage: 2.2 + - CountryCode: IDN + Language: Javanese + IsOfficial: F + Percentage: 39.4 + - CountryCode: IDN + Language: Madura + IsOfficial: F + Percentage: 4.3 + - CountryCode: IDN + Language: Malay + IsOfficial: T + Percentage: 12.1 + - CountryCode: IDN + Language: Minangkabau + IsOfficial: F + Percentage: 2.4 + - CountryCode: IDN + Language: Sunda + IsOfficial: F + Percentage: 15.8 + - CountryCode: IND + Language: Asami + IsOfficial: F + Percentage: 1.5 + - CountryCode: IND + Language: Bengali + IsOfficial: F + Percentage: 8.2 + - CountryCode: IND + Language: Gujarati + IsOfficial: F + Percentage: 4.8 + - CountryCode: IND + Language: Hindi + IsOfficial: T + Percentage: 39.9 + - CountryCode: IND + Language: Kannada + IsOfficial: F + Percentage: 3.9 + - CountryCode: IND + Language: Malajalam + IsOfficial: F + Percentage: 3.6 + - CountryCode: IND + Language: Marathi + IsOfficial: F + Percentage: 7.4 + - CountryCode: IND + Language: Orija + IsOfficial: F + Percentage: 3.3 + - CountryCode: IND + Language: Punjabi + IsOfficial: F + Percentage: 2.8 + - CountryCode: IND + Language: Tamil + IsOfficial: F + Percentage: 6.3 + - CountryCode: IND + Language: Telugu + IsOfficial: F + Percentage: 7.8 + - CountryCode: IND + Language: Urdu + IsOfficial: F + Percentage: 5.1 + - CountryCode: IRL + Language: English + IsOfficial: T + Percentage: 98.4 + - CountryCode: IRL + Language: Irish + IsOfficial: T + Percentage: 1.6 + - CountryCode: IRN + Language: Arabic + IsOfficial: F + Percentage: 2.2 + - CountryCode: IRN + Language: Azerbaijani + IsOfficial: F + Percentage: 16.8 + - CountryCode: IRN + Language: Bakhtyari + IsOfficial: F + Percentage: 1.7 + - CountryCode: IRN + Language: Balochi + IsOfficial: F + Percentage: 2.3 + - CountryCode: IRN + Language: Gilaki + IsOfficial: F + Percentage: 5.3 + - CountryCode: IRN + Language: Kurdish + IsOfficial: F + Percentage: 9.1 + - CountryCode: IRN + Language: Luri + IsOfficial: F + Percentage: 4.3 + - CountryCode: IRN + Language: Mazandarani + IsOfficial: F + Percentage: 3.6 + - CountryCode: IRN + Language: Persian + IsOfficial: T + Percentage: 45.7 + - CountryCode: IRN + Language: Turkmenian + IsOfficial: F + Percentage: 1.6 + - CountryCode: IRQ + Language: Arabic + IsOfficial: T + Percentage: 77.2 + - CountryCode: IRQ + Language: Assyrian + IsOfficial: F + Percentage: 0.8 + - CountryCode: IRQ + Language: Azerbaijani + IsOfficial: F + Percentage: 1.7 + - CountryCode: IRQ + Language: Kurdish + IsOfficial: F + Percentage: 19.0 + - CountryCode: IRQ + Language: Persian + IsOfficial: F + Percentage: 0.8 + - CountryCode: ISL + Language: English + IsOfficial: F + Percentage: 0.0 + - CountryCode: ISL + Language: Icelandic + IsOfficial: T + Percentage: 95.7 + - CountryCode: ISR + Language: Arabic + IsOfficial: T + Percentage: 18.0 + - CountryCode: ISR + Language: Hebrew + IsOfficial: T + Percentage: 63.1 + - CountryCode: ISR + Language: Russian + IsOfficial: F + Percentage: 8.9 + - CountryCode: ITA + Language: Albaniana + IsOfficial: F + Percentage: 0.2 + - CountryCode: ITA + Language: French + IsOfficial: F + Percentage: 0.5 + - CountryCode: ITA + Language: Friuli + IsOfficial: F + Percentage: 1.2 + - CountryCode: ITA + Language: German + IsOfficial: F + Percentage: 0.5 + - CountryCode: ITA + Language: Italian + IsOfficial: T + Percentage: 94.1 + - CountryCode: ITA + Language: Romani + IsOfficial: F + Percentage: 0.2 + - CountryCode: ITA + Language: Sardinian + IsOfficial: F + Percentage: 2.7 + - CountryCode: ITA + Language: Slovene + IsOfficial: F + Percentage: 0.2 + - CountryCode: JAM + Language: Creole English + IsOfficial: F + Percentage: 94.2 + - CountryCode: JAM + Language: Hindi + IsOfficial: F + Percentage: 1.9 + - CountryCode: JOR + Language: Arabic + IsOfficial: T + Percentage: 97.9 + - CountryCode: JOR + Language: Armenian + IsOfficial: F + Percentage: 1.0 + - CountryCode: JOR + Language: Circassian + IsOfficial: F + Percentage: 1.0 + - CountryCode: JPN + Language: Ainu + IsOfficial: F + Percentage: 0.0 + - CountryCode: JPN + Language: Chinese + IsOfficial: F + Percentage: 0.2 + - CountryCode: JPN + Language: English + IsOfficial: F + Percentage: 0.1 + - CountryCode: JPN + Language: Japanese + IsOfficial: T + Percentage: 99.1 + - CountryCode: JPN + Language: Korean + IsOfficial: F + Percentage: 0.5 + - CountryCode: JPN + Language: Philippene Languages + IsOfficial: F + Percentage: 0.1 + - CountryCode: KAZ + Language: German + IsOfficial: F + Percentage: 3.1 + - CountryCode: KAZ + Language: Kazakh + IsOfficial: T + Percentage: 46.0 + - CountryCode: KAZ + Language: Russian + IsOfficial: F + Percentage: 34.7 + - CountryCode: KAZ + Language: Tatar + IsOfficial: F + Percentage: 2.0 + - CountryCode: KAZ + Language: Ukrainian + IsOfficial: F + Percentage: 5.0 + - CountryCode: KAZ + Language: Uzbek + IsOfficial: F + Percentage: 2.3 + - CountryCode: KEN + Language: Gusii + IsOfficial: F + Percentage: 6.1 + - CountryCode: KEN + Language: Kalenjin + IsOfficial: F + Percentage: 10.8 + - CountryCode: KEN + Language: Kamba + IsOfficial: F + Percentage: 11.2 + - CountryCode: KEN + Language: Kikuyu + IsOfficial: F + Percentage: 20.9 + - CountryCode: KEN + Language: Luhya + IsOfficial: F + Percentage: 13.8 + - CountryCode: KEN + Language: Luo + IsOfficial: F + Percentage: 12.8 + - CountryCode: KEN + Language: Masai + IsOfficial: F + Percentage: 1.6 + - CountryCode: KEN + Language: Meru + IsOfficial: F + Percentage: 5.5 + - CountryCode: KEN + Language: Nyika + IsOfficial: F + Percentage: 4.8 + - CountryCode: KEN + Language: Turkana + IsOfficial: F + Percentage: 1.4 + - CountryCode: KGZ + Language: Kazakh + IsOfficial: F + Percentage: 0.8 + - CountryCode: KGZ + Language: Kirgiz + IsOfficial: T + Percentage: 59.7 + - CountryCode: KGZ + Language: Russian + IsOfficial: T + Percentage: 16.2 + - CountryCode: KGZ + Language: Tadzhik + IsOfficial: F + Percentage: 0.8 + - CountryCode: KGZ + Language: Tatar + IsOfficial: F + Percentage: 1.3 + - CountryCode: KGZ + Language: Ukrainian + IsOfficial: F + Percentage: 1.7 + - CountryCode: KGZ + Language: Uzbek + IsOfficial: F + Percentage: 14.1 + - CountryCode: KHM + Language: Chinese + IsOfficial: F + Percentage: 3.1 + - CountryCode: KHM + Language: Khmer + IsOfficial: T + Percentage: 88.6 + - CountryCode: KHM + Language: Tšam + IsOfficial: F + Percentage: 2.4 + - CountryCode: KHM + Language: Vietnamese + IsOfficial: F + Percentage: 5.5 + - CountryCode: KIR + Language: Kiribati + IsOfficial: T + Percentage: 98.9 + - CountryCode: KIR + Language: Tuvalu + IsOfficial: F + Percentage: 0.5 + - CountryCode: KNA + Language: Creole English + IsOfficial: F + Percentage: 100.0 + - CountryCode: KNA + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: KOR + Language: Chinese + IsOfficial: F + Percentage: 0.1 + - CountryCode: KOR + Language: Korean + IsOfficial: T + Percentage: 99.9 + - CountryCode: KWT + Language: Arabic + IsOfficial: T + Percentage: 78.1 + - CountryCode: KWT + Language: English + IsOfficial: F + Percentage: 0.0 + - CountryCode: LAO + Language: Lao + IsOfficial: T + Percentage: 67.2 + - CountryCode: LAO + Language: Lao-Soung + IsOfficial: F + Percentage: 5.2 + - CountryCode: LAO + Language: Mon-khmer + IsOfficial: F + Percentage: 16.5 + - CountryCode: LAO + Language: Thai + IsOfficial: F + Percentage: 7.8 + - CountryCode: LBN + Language: Arabic + IsOfficial: T + Percentage: 93.0 + - CountryCode: LBN + Language: Armenian + IsOfficial: F + Percentage: 5.9 + - CountryCode: LBN + Language: French + IsOfficial: F + Percentage: 0.0 + - CountryCode: LBR + Language: Bassa + IsOfficial: F + Percentage: 13.7 + - CountryCode: LBR + Language: Gio + IsOfficial: F + Percentage: 7.9 + - CountryCode: LBR + Language: Grebo + IsOfficial: F + Percentage: 8.9 + - CountryCode: LBR + Language: Kpelle + IsOfficial: F + Percentage: 19.5 + - CountryCode: LBR + Language: Kru + IsOfficial: F + Percentage: 7.2 + - CountryCode: LBR + Language: Loma + IsOfficial: F + Percentage: 5.8 + - CountryCode: LBR + Language: Malinke + IsOfficial: F + Percentage: 5.1 + - CountryCode: LBR + Language: Mano + IsOfficial: F + Percentage: 7.2 + - CountryCode: LBY + Language: Arabic + IsOfficial: T + Percentage: 96.0 + - CountryCode: LBY + Language: Berberi + IsOfficial: F + Percentage: 1.0 + - CountryCode: LCA + Language: Creole French + IsOfficial: F + Percentage: 80.0 + - CountryCode: LCA + Language: English + IsOfficial: T + Percentage: 20.0 + - CountryCode: LIE + Language: German + IsOfficial: T + Percentage: 89.0 + - CountryCode: LIE + Language: Italian + IsOfficial: F + Percentage: 2.5 + - CountryCode: LIE + Language: Turkish + IsOfficial: F + Percentage: 2.5 + - CountryCode: LKA + Language: Mixed Languages + IsOfficial: F + Percentage: 19.6 + - CountryCode: LKA + Language: Singali + IsOfficial: T + Percentage: 60.3 + - CountryCode: LKA + Language: Tamil + IsOfficial: T + Percentage: 19.6 + - CountryCode: LSO + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: LSO + Language: Sotho + IsOfficial: T + Percentage: 85.0 + - CountryCode: LSO + Language: Zulu + IsOfficial: F + Percentage: 15.0 + - CountryCode: LTU + Language: Belorussian + IsOfficial: F + Percentage: 1.4 + - CountryCode: LTU + Language: Lithuanian + IsOfficial: T + Percentage: 81.6 + - CountryCode: LTU + Language: Polish + IsOfficial: F + Percentage: 7.0 + - CountryCode: LTU + Language: Russian + IsOfficial: F + Percentage: 8.1 + - CountryCode: LTU + Language: Ukrainian + IsOfficial: F + Percentage: 1.1 + - CountryCode: LUX + Language: French + IsOfficial: T + Percentage: 4.2 + - CountryCode: LUX + Language: German + IsOfficial: T + Percentage: 2.3 + - CountryCode: LUX + Language: Italian + IsOfficial: F + Percentage: 4.6 + - CountryCode: LUX + Language: Luxembourgish + IsOfficial: T + Percentage: 64.4 + - CountryCode: LUX + Language: Portuguese + IsOfficial: F + Percentage: 13.0 + - CountryCode: LVA + Language: Belorussian + IsOfficial: F + Percentage: 4.1 + - CountryCode: LVA + Language: Latvian + IsOfficial: T + Percentage: 55.1 + - CountryCode: LVA + Language: Lithuanian + IsOfficial: F + Percentage: 1.2 + - CountryCode: LVA + Language: Polish + IsOfficial: F + Percentage: 2.1 + - CountryCode: LVA + Language: Russian + IsOfficial: F + Percentage: 32.5 + - CountryCode: LVA + Language: Ukrainian + IsOfficial: F + Percentage: 2.9 + - CountryCode: MAC + Language: Canton Chinese + IsOfficial: F + Percentage: 85.6 + - CountryCode: MAC + Language: English + IsOfficial: F + Percentage: 0.5 + - CountryCode: MAC + Language: Mandarin Chinese + IsOfficial: F + Percentage: 1.2 + - CountryCode: MAC + Language: Portuguese + IsOfficial: T + Percentage: 2.3 + - CountryCode: MAR + Language: Arabic + IsOfficial: T + Percentage: 65.0 + - CountryCode: MAR + Language: Berberi + IsOfficial: F + Percentage: 33.0 + - CountryCode: MCO + Language: English + IsOfficial: F + Percentage: 6.5 + - CountryCode: MCO + Language: French + IsOfficial: T + Percentage: 41.9 + - CountryCode: MCO + Language: Italian + IsOfficial: F + Percentage: 16.1 + - CountryCode: MCO + Language: Monegasque + IsOfficial: F + Percentage: 16.1 + - CountryCode: MDA + Language: Bulgariana + IsOfficial: F + Percentage: 1.6 + - CountryCode: MDA + Language: Gagauzi + IsOfficial: F + Percentage: 3.2 + - CountryCode: MDA + Language: Romanian + IsOfficial: T + Percentage: 61.9 + - CountryCode: MDA + Language: Russian + IsOfficial: F + Percentage: 23.2 + - CountryCode: MDA + Language: Ukrainian + IsOfficial: F + Percentage: 8.6 + - CountryCode: MDG + Language: French + IsOfficial: T + Percentage: 0.0 + - CountryCode: MDG + Language: Malagasy + IsOfficial: T + Percentage: 98.9 + - CountryCode: MDV + Language: Dhivehi + IsOfficial: T + Percentage: 100.0 + - CountryCode: MDV + Language: English + IsOfficial: F + Percentage: 0.0 + - CountryCode: MEX + Language: Mixtec + IsOfficial: F + Percentage: 0.6 + - CountryCode: MEX + Language: Náhuatl + IsOfficial: F + Percentage: 1.8 + - CountryCode: MEX + Language: Otomí + IsOfficial: F + Percentage: 0.4 + - CountryCode: MEX + Language: Spanish + IsOfficial: T + Percentage: 92.1 + - CountryCode: MEX + Language: Yucatec + IsOfficial: F + Percentage: 1.1 + - CountryCode: MEX + Language: Zapotec + IsOfficial: F + Percentage: 0.6 + - CountryCode: MHL + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: MHL + Language: Marshallese + IsOfficial: T + Percentage: 96.8 + - CountryCode: MKD + Language: Albaniana + IsOfficial: F + Percentage: 22.9 + - CountryCode: MKD + Language: Macedonian + IsOfficial: T + Percentage: 66.5 + - CountryCode: MKD + Language: Romani + IsOfficial: F + Percentage: 2.3 + - CountryCode: MKD + Language: Serbo-Croatian + IsOfficial: F + Percentage: 2.0 + - CountryCode: MKD + Language: Turkish + IsOfficial: F + Percentage: 4.0 + - CountryCode: MLI + Language: Bambara + IsOfficial: F + Percentage: 31.8 + - CountryCode: MLI + Language: Ful + IsOfficial: F + Percentage: 13.9 + - CountryCode: MLI + Language: Senufo and Minianka + IsOfficial: F + Percentage: 12.0 + - CountryCode: MLI + Language: Songhai + IsOfficial: F + Percentage: 6.9 + - CountryCode: MLI + Language: Soninke + IsOfficial: F + Percentage: 8.7 + - CountryCode: MLI + Language: Tamashek + IsOfficial: F + Percentage: 7.3 + - CountryCode: MLT + Language: English + IsOfficial: T + Percentage: 2.1 + - CountryCode: MLT + Language: Maltese + IsOfficial: T + Percentage: 95.8 + - CountryCode: MMR + Language: Burmese + IsOfficial: T + Percentage: 69.0 + - CountryCode: MMR + Language: Chin + IsOfficial: F + Percentage: 2.2 + - CountryCode: MMR + Language: Kachin + IsOfficial: F + Percentage: 1.4 + - CountryCode: MMR + Language: Karen + IsOfficial: F + Percentage: 6.2 + - CountryCode: MMR + Language: Kayah + IsOfficial: F + Percentage: 0.4 + - CountryCode: MMR + Language: Mon + IsOfficial: F + Percentage: 2.4 + - CountryCode: MMR + Language: Rakhine + IsOfficial: F + Percentage: 4.5 + - CountryCode: MMR + Language: Shan + IsOfficial: F + Percentage: 8.5 + - CountryCode: MNG + Language: Bajad + IsOfficial: F + Percentage: 1.9 + - CountryCode: MNG + Language: Buryat + IsOfficial: F + Percentage: 1.7 + - CountryCode: MNG + Language: Dariganga + IsOfficial: F + Percentage: 1.4 + - CountryCode: MNG + Language: Dorbet + IsOfficial: F + Percentage: 2.7 + - CountryCode: MNG + Language: Kazakh + IsOfficial: F + Percentage: 5.9 + - CountryCode: MNG + Language: Mongolian + IsOfficial: T + Percentage: 78.8 + - CountryCode: MNP + Language: Carolinian + IsOfficial: F + Percentage: 4.8 + - CountryCode: MNP + Language: Chamorro + IsOfficial: F + Percentage: 30.0 + - CountryCode: MNP + Language: Chinese + IsOfficial: F + Percentage: 7.1 + - CountryCode: MNP + Language: English + IsOfficial: T + Percentage: 4.8 + - CountryCode: MNP + Language: Korean + IsOfficial: F + Percentage: 6.5 + - CountryCode: MNP + Language: Philippene Languages + IsOfficial: F + Percentage: 34.1 + - CountryCode: MOZ + Language: Chuabo + IsOfficial: F + Percentage: 5.7 + - CountryCode: MOZ + Language: Lomwe + IsOfficial: F + Percentage: 7.8 + - CountryCode: MOZ + Language: Makua + IsOfficial: F + Percentage: 27.8 + - CountryCode: MOZ + Language: Marendje + IsOfficial: F + Percentage: 3.5 + - CountryCode: MOZ + Language: Nyanja + IsOfficial: F + Percentage: 3.3 + - CountryCode: MOZ + Language: Ronga + IsOfficial: F + Percentage: 3.7 + - CountryCode: MOZ + Language: Sena + IsOfficial: F + Percentage: 9.4 + - CountryCode: MOZ + Language: Shona + IsOfficial: F + Percentage: 6.5 + - CountryCode: MOZ + Language: Tsonga + IsOfficial: F + Percentage: 12.4 + - CountryCode: MOZ + Language: Tswa + IsOfficial: F + Percentage: 6.0 + - CountryCode: MRT + Language: Ful + IsOfficial: F + Percentage: 1.2 + - CountryCode: MRT + Language: Hassaniya + IsOfficial: F + Percentage: 81.7 + - CountryCode: MRT + Language: Soninke + IsOfficial: F + Percentage: 2.7 + - CountryCode: MRT + Language: Tukulor + IsOfficial: F + Percentage: 5.4 + - CountryCode: MRT + Language: Wolof + IsOfficial: F + Percentage: 6.6 + - CountryCode: MRT + Language: Zenaga + IsOfficial: F + Percentage: 1.2 + - CountryCode: MSR + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: MTQ + Language: Creole French + IsOfficial: F + Percentage: 96.6 + - CountryCode: MTQ + Language: French + IsOfficial: T + Percentage: 0.0 + - CountryCode: MUS + Language: Bhojpuri + IsOfficial: F + Percentage: 21.1 + - CountryCode: MUS + Language: Creole French + IsOfficial: F + Percentage: 70.6 + - CountryCode: MUS + Language: French + IsOfficial: F + Percentage: 3.4 + - CountryCode: MUS + Language: Hindi + IsOfficial: F + Percentage: 1.2 + - CountryCode: MUS + Language: Marathi + IsOfficial: F + Percentage: 0.7 + - CountryCode: MUS + Language: Tamil + IsOfficial: F + Percentage: 0.8 + - CountryCode: MWI + Language: Chichewa + IsOfficial: T + Percentage: 58.3 + - CountryCode: MWI + Language: Lomwe + IsOfficial: F + Percentage: 18.4 + - CountryCode: MWI + Language: Ngoni + IsOfficial: F + Percentage: 6.7 + - CountryCode: MWI + Language: Yao + IsOfficial: F + Percentage: 13.2 + - CountryCode: MYS + Language: Chinese + IsOfficial: F + Percentage: 9.0 + - CountryCode: MYS + Language: Dusun + IsOfficial: F + Percentage: 1.1 + - CountryCode: MYS + Language: English + IsOfficial: F + Percentage: 1.6 + - CountryCode: MYS + Language: Iban + IsOfficial: F + Percentage: 2.8 + - CountryCode: MYS + Language: Malay + IsOfficial: T + Percentage: 58.4 + - CountryCode: MYS + Language: Tamil + IsOfficial: F + Percentage: 3.9 + - CountryCode: MYT + Language: French + IsOfficial: T + Percentage: 20.3 + - CountryCode: MYT + Language: Mahoré + IsOfficial: F + Percentage: 41.9 + - CountryCode: MYT + Language: Malagasy + IsOfficial: F + Percentage: 16.1 + - CountryCode: NAM + Language: Afrikaans + IsOfficial: F + Percentage: 9.5 + - CountryCode: NAM + Language: Caprivi + IsOfficial: F + Percentage: 4.7 + - CountryCode: NAM + Language: German + IsOfficial: F + Percentage: 0.9 + - CountryCode: NAM + Language: Herero + IsOfficial: F + Percentage: 8.0 + - CountryCode: NAM + Language: Kavango + IsOfficial: F + Percentage: 9.7 + - CountryCode: NAM + Language: Nama + IsOfficial: F + Percentage: 12.4 + - CountryCode: NAM + Language: Ovambo + IsOfficial: F + Percentage: 50.7 + - CountryCode: NAM + Language: San + IsOfficial: F + Percentage: 1.9 + - CountryCode: NCL + Language: French + IsOfficial: T + Percentage: 34.3 + - CountryCode: NCL + Language: Malenasian Languages + IsOfficial: F + Percentage: 45.4 + - CountryCode: NCL + Language: Polynesian Languages + IsOfficial: F + Percentage: 11.6 + - CountryCode: NER + Language: Ful + IsOfficial: F + Percentage: 9.7 + - CountryCode: NER + Language: Hausa + IsOfficial: F + Percentage: 53.1 + - CountryCode: NER + Language: Kanuri + IsOfficial: F + Percentage: 4.4 + - CountryCode: NER + Language: Songhai-zerma + IsOfficial: F + Percentage: 21.2 + - CountryCode: NER + Language: Tamashek + IsOfficial: F + Percentage: 10.4 + - CountryCode: NFK + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: NGA + Language: Bura + IsOfficial: F + Percentage: 1.6 + - CountryCode: NGA + Language: Edo + IsOfficial: F + Percentage: 3.3 + - CountryCode: NGA + Language: Ful + IsOfficial: F + Percentage: 11.3 + - CountryCode: NGA + Language: Hausa + IsOfficial: F + Percentage: 21.1 + - CountryCode: NGA + Language: Ibibio + IsOfficial: F + Percentage: 5.6 + - CountryCode: NGA + Language: Ibo + IsOfficial: F + Percentage: 18.1 + - CountryCode: NGA + Language: Ijo + IsOfficial: F + Percentage: 1.8 + - CountryCode: NGA + Language: Joruba + IsOfficial: F + Percentage: 21.4 + - CountryCode: NGA + Language: Kanuri + IsOfficial: F + Percentage: 4.1 + - CountryCode: NGA + Language: Tiv + IsOfficial: F + Percentage: 2.3 + - CountryCode: NIC + Language: Creole English + IsOfficial: F + Percentage: 0.5 + - CountryCode: NIC + Language: Miskito + IsOfficial: F + Percentage: 1.6 + - CountryCode: NIC + Language: Spanish + IsOfficial: T + Percentage: 97.6 + - CountryCode: NIC + Language: Sumo + IsOfficial: F + Percentage: 0.2 + - CountryCode: NIU + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: NIU + Language: Niue + IsOfficial: F + Percentage: 0.0 + - CountryCode: NLD + Language: Arabic + IsOfficial: F + Percentage: 0.9 + - CountryCode: NLD + Language: Dutch + IsOfficial: T + Percentage: 95.6 + - CountryCode: NLD + Language: Fries + IsOfficial: F + Percentage: 3.7 + - CountryCode: NLD + Language: Turkish + IsOfficial: F + Percentage: 0.8 + - CountryCode: NOR + Language: Danish + IsOfficial: F + Percentage: 0.4 + - CountryCode: NOR + Language: English + IsOfficial: F + Percentage: 0.5 + - CountryCode: NOR + Language: Norwegian + IsOfficial: T + Percentage: 96.6 + - CountryCode: NOR + Language: Saame + IsOfficial: F + Percentage: 0.0 + - CountryCode: NOR + Language: Swedish + IsOfficial: F + Percentage: 0.3 + - CountryCode: NPL + Language: Bhojpuri + IsOfficial: F + Percentage: 7.5 + - CountryCode: NPL + Language: Hindi + IsOfficial: F + Percentage: 3.0 + - CountryCode: NPL + Language: Maithili + IsOfficial: F + Percentage: 11.9 + - CountryCode: NPL + Language: Nepali + IsOfficial: T + Percentage: 50.4 + - CountryCode: NPL + Language: Newari + IsOfficial: F + Percentage: 3.7 + - CountryCode: NPL + Language: Tamang + IsOfficial: F + Percentage: 4.9 + - CountryCode: NPL + Language: Tharu + IsOfficial: F + Percentage: 5.4 + - CountryCode: NRU + Language: Chinese + IsOfficial: F + Percentage: 8.5 + - CountryCode: NRU + Language: English + IsOfficial: T + Percentage: 7.5 + - CountryCode: NRU + Language: Kiribati + IsOfficial: F + Percentage: 17.9 + - CountryCode: NRU + Language: Nauru + IsOfficial: T + Percentage: 57.5 + - CountryCode: NRU + Language: Tuvalu + IsOfficial: F + Percentage: 8.5 + - CountryCode: NZL + Language: English + IsOfficial: T + Percentage: 87.0 + - CountryCode: NZL + Language: Maori + IsOfficial: F + Percentage: 4.3 + - CountryCode: OMN + Language: Arabic + IsOfficial: T + Percentage: 76.7 + - CountryCode: OMN + Language: Balochi + IsOfficial: F + Percentage: 0.0 + - CountryCode: PAK + Language: Balochi + IsOfficial: F + Percentage: 3.0 + - CountryCode: PAK + Language: Brahui + IsOfficial: F + Percentage: 1.2 + - CountryCode: PAK + Language: Hindko + IsOfficial: F + Percentage: 2.4 + - CountryCode: PAK + Language: Pashto + IsOfficial: F + Percentage: 13.1 + - CountryCode: PAK + Language: Punjabi + IsOfficial: F + Percentage: 48.2 + - CountryCode: PAK + Language: Saraiki + IsOfficial: F + Percentage: 9.8 + - CountryCode: PAK + Language: Sindhi + IsOfficial: F + Percentage: 11.8 + - CountryCode: PAK + Language: Urdu + IsOfficial: T + Percentage: 7.6 + - CountryCode: PAN + Language: Arabic + IsOfficial: F + Percentage: 0.6 + - CountryCode: PAN + Language: Creole English + IsOfficial: F + Percentage: 14.0 + - CountryCode: PAN + Language: Cuna + IsOfficial: F + Percentage: 2.0 + - CountryCode: PAN + Language: Embera + IsOfficial: F + Percentage: 0.6 + - CountryCode: PAN + Language: Guaymí + IsOfficial: F + Percentage: 5.3 + - CountryCode: PAN + Language: Spanish + IsOfficial: T + Percentage: 76.8 + - CountryCode: PCN + Language: Pitcairnese + IsOfficial: F + Percentage: 0.0 + - CountryCode: PER + Language: Aimará + IsOfficial: T + Percentage: 2.3 + - CountryCode: PER + Language: Ketšua + IsOfficial: T + Percentage: 16.4 + - CountryCode: PER + Language: Spanish + IsOfficial: T + Percentage: 79.8 + - CountryCode: PHL + Language: Bicol + IsOfficial: F + Percentage: 5.7 + - CountryCode: PHL + Language: Cebuano + IsOfficial: F + Percentage: 23.3 + - CountryCode: PHL + Language: Hiligaynon + IsOfficial: F + Percentage: 9.1 + - CountryCode: PHL + Language: Ilocano + IsOfficial: F + Percentage: 9.3 + - CountryCode: PHL + Language: Maguindanao + IsOfficial: F + Percentage: 1.4 + - CountryCode: PHL + Language: Maranao + IsOfficial: F + Percentage: 1.3 + - CountryCode: PHL + Language: Pampango + IsOfficial: F + Percentage: 3.0 + - CountryCode: PHL + Language: Pangasinan + IsOfficial: F + Percentage: 1.8 + - CountryCode: PHL + Language: Pilipino + IsOfficial: T + Percentage: 29.3 + - CountryCode: PHL + Language: Waray-waray + IsOfficial: F + Percentage: 3.8 + - CountryCode: PLW + Language: Chinese + IsOfficial: F + Percentage: 1.6 + - CountryCode: PLW + Language: English + IsOfficial: T + Percentage: 3.2 + - CountryCode: PLW + Language: Palau + IsOfficial: T + Percentage: 82.2 + - CountryCode: PLW + Language: Philippene Languages + IsOfficial: F + Percentage: 9.2 + - CountryCode: PNG + Language: Malenasian Languages + IsOfficial: F + Percentage: 20.0 + - CountryCode: PNG + Language: Papuan Languages + IsOfficial: F + Percentage: 78.1 + - CountryCode: POL + Language: Belorussian + IsOfficial: F + Percentage: 0.5 + - CountryCode: POL + Language: German + IsOfficial: F + Percentage: 1.3 + - CountryCode: POL + Language: Polish + IsOfficial: T + Percentage: 97.6 + - CountryCode: POL + Language: Ukrainian + IsOfficial: F + Percentage: 0.6 + - CountryCode: PRI + Language: English + IsOfficial: F + Percentage: 47.4 + - CountryCode: PRI + Language: Spanish + IsOfficial: T + Percentage: 51.3 + - CountryCode: PRK + Language: Chinese + IsOfficial: F + Percentage: 0.1 + - CountryCode: PRK + Language: Korean + IsOfficial: T + Percentage: 99.9 + - CountryCode: PRT + Language: Portuguese + IsOfficial: T + Percentage: 99.0 + - CountryCode: PRY + Language: German + IsOfficial: F + Percentage: 0.9 + - CountryCode: PRY + Language: Guaraní + IsOfficial: T + Percentage: 40.1 + - CountryCode: PRY + Language: Portuguese + IsOfficial: F + Percentage: 3.2 + - CountryCode: PRY + Language: Spanish + IsOfficial: T + Percentage: 55.1 + - CountryCode: PSE + Language: Arabic + IsOfficial: F + Percentage: 95.9 + - CountryCode: PSE + Language: Hebrew + IsOfficial: F + Percentage: 4.1 + - CountryCode: PYF + Language: Chinese + IsOfficial: F + Percentage: 2.9 + - CountryCode: PYF + Language: French + IsOfficial: T + Percentage: 40.8 + - CountryCode: PYF + Language: Tahitian + IsOfficial: F + Percentage: 46.4 + - CountryCode: QAT + Language: Arabic + IsOfficial: T + Percentage: 40.7 + - CountryCode: QAT + Language: Urdu + IsOfficial: F + Percentage: 0.0 + - CountryCode: REU + Language: Chinese + IsOfficial: F + Percentage: 2.8 + - CountryCode: REU + Language: Comorian + IsOfficial: F + Percentage: 2.8 + - CountryCode: REU + Language: Creole French + IsOfficial: F + Percentage: 91.5 + - CountryCode: REU + Language: Malagasy + IsOfficial: F + Percentage: 1.4 + - CountryCode: REU + Language: Tamil + IsOfficial: F + Percentage: 0.0 + - CountryCode: ROM + Language: German + IsOfficial: F + Percentage: 0.4 + - CountryCode: ROM + Language: Hungarian + IsOfficial: F + Percentage: 7.2 + - CountryCode: ROM + Language: Romani + IsOfficial: T + Percentage: 0.7 + - CountryCode: ROM + Language: Romanian + IsOfficial: T + Percentage: 90.7 + - CountryCode: ROM + Language: Serbo-Croatian + IsOfficial: F + Percentage: 0.1 + - CountryCode: ROM + Language: Ukrainian + IsOfficial: F + Percentage: 0.3 + - CountryCode: RUS + Language: Avarian + IsOfficial: F + Percentage: 0.4 + - CountryCode: RUS + Language: Bashkir + IsOfficial: F + Percentage: 0.7 + - CountryCode: RUS + Language: Belorussian + IsOfficial: F + Percentage: 0.3 + - CountryCode: RUS + Language: Chechen + IsOfficial: F + Percentage: 0.6 + - CountryCode: RUS + Language: Chuvash + IsOfficial: F + Percentage: 0.9 + - CountryCode: RUS + Language: Kazakh + IsOfficial: F + Percentage: 0.4 + - CountryCode: RUS + Language: Mari + IsOfficial: F + Percentage: 0.4 + - CountryCode: RUS + Language: Mordva + IsOfficial: F + Percentage: 0.5 + - CountryCode: RUS + Language: Russian + IsOfficial: T + Percentage: 86.6 + - CountryCode: RUS + Language: Tatar + IsOfficial: F + Percentage: 3.2 + - CountryCode: RUS + Language: Udmur + IsOfficial: F + Percentage: 0.3 + - CountryCode: RUS + Language: Ukrainian + IsOfficial: F + Percentage: 1.3 + - CountryCode: RWA + Language: French + IsOfficial: T + Percentage: 0.0 + - CountryCode: RWA + Language: Rwanda + IsOfficial: T + Percentage: 100.0 + - CountryCode: SAU + Language: Arabic + IsOfficial: T + Percentage: 95.0 + - CountryCode: SDN + Language: Arabic + IsOfficial: T + Percentage: 49.4 + - CountryCode: SDN + Language: Bari + IsOfficial: F + Percentage: 2.5 + - CountryCode: SDN + Language: Beja + IsOfficial: F + Percentage: 6.4 + - CountryCode: SDN + Language: Chilluk + IsOfficial: F + Percentage: 1.7 + - CountryCode: SDN + Language: Dinka + IsOfficial: F + Percentage: 11.5 + - CountryCode: SDN + Language: Fur + IsOfficial: F + Percentage: 2.1 + - CountryCode: SDN + Language: Lotuko + IsOfficial: F + Percentage: 1.5 + - CountryCode: SDN + Language: Nubian Languages + IsOfficial: F + Percentage: 8.1 + - CountryCode: SDN + Language: Nuer + IsOfficial: F + Percentage: 4.9 + - CountryCode: SDN + Language: Zande + IsOfficial: F + Percentage: 2.7 + - CountryCode: SEN + Language: Diola + IsOfficial: F + Percentage: 5.0 + - CountryCode: SEN + Language: Ful + IsOfficial: F + Percentage: 21.7 + - CountryCode: SEN + Language: Malinke + IsOfficial: F + Percentage: 3.8 + - CountryCode: SEN + Language: Serer + IsOfficial: F + Percentage: 12.5 + - CountryCode: SEN + Language: Soninke + IsOfficial: F + Percentage: 1.3 + - CountryCode: SEN + Language: Wolof + IsOfficial: T + Percentage: 48.1 + - CountryCode: SGP + Language: Chinese + IsOfficial: T + Percentage: 77.1 + - CountryCode: SGP + Language: Malay + IsOfficial: T + Percentage: 14.1 + - CountryCode: SGP + Language: Tamil + IsOfficial: T + Percentage: 7.4 + - CountryCode: SHN + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: SJM + Language: Norwegian + IsOfficial: T + Percentage: 0.0 + - CountryCode: SJM + Language: Russian + IsOfficial: F + Percentage: 0.0 + - CountryCode: SLB + Language: Malenasian Languages + IsOfficial: F + Percentage: 85.6 + - CountryCode: SLB + Language: Papuan Languages + IsOfficial: F + Percentage: 8.6 + - CountryCode: SLB + Language: Polynesian Languages + IsOfficial: F + Percentage: 3.8 + - CountryCode: SLE + Language: Bullom-sherbro + IsOfficial: F + Percentage: 3.8 + - CountryCode: SLE + Language: Ful + IsOfficial: F + Percentage: 3.8 + - CountryCode: SLE + Language: Kono-vai + IsOfficial: F + Percentage: 5.1 + - CountryCode: SLE + Language: Kuranko + IsOfficial: F + Percentage: 3.4 + - CountryCode: SLE + Language: Limba + IsOfficial: F + Percentage: 8.3 + - CountryCode: SLE + Language: Mende + IsOfficial: F + Percentage: 34.8 + - CountryCode: SLE + Language: Temne + IsOfficial: F + Percentage: 31.8 + - CountryCode: SLE + Language: Yalunka + IsOfficial: F + Percentage: 3.4 + - CountryCode: SLV + Language: Nahua + IsOfficial: F + Percentage: 0.0 + - CountryCode: SLV + Language: Spanish + IsOfficial: T + Percentage: 100.0 + - CountryCode: SMR + Language: Italian + IsOfficial: T + Percentage: 100.0 + - CountryCode: SOM + Language: Arabic + IsOfficial: T + Percentage: 0.0 + - CountryCode: SOM + Language: Somali + IsOfficial: T + Percentage: 98.3 + - CountryCode: SPM + Language: French + IsOfficial: T + Percentage: 0.0 + - CountryCode: STP + Language: Crioulo + IsOfficial: F + Percentage: 86.3 + - CountryCode: STP + Language: French + IsOfficial: F + Percentage: 0.7 + - CountryCode: SUR + Language: Hindi + IsOfficial: F + Percentage: 0.0 + - CountryCode: SUR + Language: Sranantonga + IsOfficial: F + Percentage: 81.0 + - CountryCode: SVK + Language: Czech and Moravian + IsOfficial: F + Percentage: 1.1 + - CountryCode: SVK + Language: Hungarian + IsOfficial: F + Percentage: 10.5 + - CountryCode: SVK + Language: Romani + IsOfficial: F + Percentage: 1.7 + - CountryCode: SVK + Language: Slovak + IsOfficial: T + Percentage: 85.6 + - CountryCode: SVK + Language: Ukrainian and Russian + IsOfficial: F + Percentage: 0.6 + - CountryCode: SVN + Language: Hungarian + IsOfficial: F + Percentage: 0.5 + - CountryCode: SVN + Language: Serbo-Croatian + IsOfficial: F + Percentage: 7.9 + - CountryCode: SVN + Language: Slovene + IsOfficial: T + Percentage: 87.9 + - CountryCode: SWE + Language: Arabic + IsOfficial: F + Percentage: 0.8 + - CountryCode: SWE + Language: Finnish + IsOfficial: F + Percentage: 2.4 + - CountryCode: SWE + Language: Norwegian + IsOfficial: F + Percentage: 0.5 + - CountryCode: SWE + Language: Southern Slavic Languages + IsOfficial: F + Percentage: 1.3 + - CountryCode: SWE + Language: Spanish + IsOfficial: F + Percentage: 0.6 + - CountryCode: SWE + Language: Swedish + IsOfficial: T + Percentage: 89.5 + - CountryCode: SWZ + Language: Swazi + IsOfficial: T + Percentage: 89.9 + - CountryCode: SWZ + Language: Zulu + IsOfficial: F + Percentage: 2.0 + - CountryCode: SYC + Language: English + IsOfficial: T + Percentage: 3.8 + - CountryCode: SYC + Language: French + IsOfficial: T + Percentage: 1.3 + - CountryCode: SYC + Language: Seselwa + IsOfficial: F + Percentage: 91.3 + - CountryCode: SYR + Language: Arabic + IsOfficial: T + Percentage: 90.0 + - CountryCode: SYR + Language: Kurdish + IsOfficial: F + Percentage: 9.0 + - CountryCode: TCA + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: TCD + Language: Arabic + IsOfficial: T + Percentage: 12.3 + - CountryCode: TCD + Language: Gorane + IsOfficial: F + Percentage: 6.2 + - CountryCode: TCD + Language: Hadjarai + IsOfficial: F + Percentage: 6.7 + - CountryCode: TCD + Language: Kanem-bornu + IsOfficial: F + Percentage: 9.0 + - CountryCode: TCD + Language: Mayo-kebbi + IsOfficial: F + Percentage: 11.5 + - CountryCode: TCD + Language: Ouaddai + IsOfficial: F + Percentage: 8.7 + - CountryCode: TCD + Language: Sara + IsOfficial: F + Percentage: 27.7 + - CountryCode: TCD + Language: Tandjile + IsOfficial: F + Percentage: 6.5 + - CountryCode: TGO + Language: Ane + IsOfficial: F + Percentage: 5.7 + - CountryCode: TGO + Language: Ewe + IsOfficial: T + Percentage: 23.2 + - CountryCode: TGO + Language: Gurma + IsOfficial: F + Percentage: 3.4 + - CountryCode: TGO + Language: Kabyé + IsOfficial: T + Percentage: 13.8 + - CountryCode: TGO + Language: Kotokoli + IsOfficial: F + Percentage: 5.7 + - CountryCode: TGO + Language: Moba + IsOfficial: F + Percentage: 5.4 + - CountryCode: TGO + Language: Naudemba + IsOfficial: F + Percentage: 4.1 + - CountryCode: TGO + Language: Watyi + IsOfficial: F + Percentage: 10.3 + - CountryCode: THA + Language: Chinese + IsOfficial: F + Percentage: 12.1 + - CountryCode: THA + Language: Khmer + IsOfficial: F + Percentage: 1.3 + - CountryCode: THA + Language: Kuy + IsOfficial: F + Percentage: 1.1 + - CountryCode: THA + Language: Lao + IsOfficial: F + Percentage: 26.9 + - CountryCode: THA + Language: Malay + IsOfficial: F + Percentage: 3.6 + - CountryCode: THA + Language: Thai + IsOfficial: T + Percentage: 52.6 + - CountryCode: TJK + Language: Russian + IsOfficial: F + Percentage: 9.7 + - CountryCode: TJK + Language: Tadzhik + IsOfficial: T + Percentage: 62.2 + - CountryCode: TJK + Language: Uzbek + IsOfficial: F + Percentage: 23.2 + - CountryCode: TKL + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: TKL + Language: Tokelau + IsOfficial: F + Percentage: 0.0 + - CountryCode: TKM + Language: Kazakh + IsOfficial: F + Percentage: 2.0 + - CountryCode: TKM + Language: Russian + IsOfficial: F + Percentage: 6.7 + - CountryCode: TKM + Language: Turkmenian + IsOfficial: T + Percentage: 76.7 + - CountryCode: TKM + Language: Uzbek + IsOfficial: F + Percentage: 9.2 + - CountryCode: TMP + Language: Portuguese + IsOfficial: T + Percentage: 0.0 + - CountryCode: TMP + Language: Sunda + IsOfficial: F + Percentage: 0.0 + - CountryCode: TON + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: TON + Language: Tongan + IsOfficial: T + Percentage: 98.3 + - CountryCode: TTO + Language: Creole English + IsOfficial: F + Percentage: 2.9 + - CountryCode: TTO + Language: English + IsOfficial: F + Percentage: 93.5 + - CountryCode: TTO + Language: Hindi + IsOfficial: F + Percentage: 3.4 + - CountryCode: TUN + Language: Arabic + IsOfficial: T + Percentage: 69.9 + - CountryCode: TUN + Language: Arabic-French + IsOfficial: F + Percentage: 26.3 + - CountryCode: TUN + Language: Arabic-French-English + IsOfficial: F + Percentage: 3.2 + - CountryCode: TUR + Language: Arabic + IsOfficial: F + Percentage: 1.4 + - CountryCode: TUR + Language: Kurdish + IsOfficial: F + Percentage: 10.6 + - CountryCode: TUR + Language: Turkish + IsOfficial: T + Percentage: 87.6 + - CountryCode: TUV + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: TUV + Language: Kiribati + IsOfficial: F + Percentage: 7.5 + - CountryCode: TUV + Language: Tuvalu + IsOfficial: T + Percentage: 92.5 + - CountryCode: TWN + Language: Ami + IsOfficial: F + Percentage: 0.6 + - CountryCode: TWN + Language: Atayal + IsOfficial: F + Percentage: 0.4 + - CountryCode: TWN + Language: Hakka + IsOfficial: F + Percentage: 11.0 + - CountryCode: TWN + Language: Mandarin Chinese + IsOfficial: T + Percentage: 20.1 + - CountryCode: TWN + Language: Min + IsOfficial: F + Percentage: 66.7 + - CountryCode: TWN + Language: Paiwan + IsOfficial: F + Percentage: 0.3 + - CountryCode: TZA + Language: Chaga and Pare + IsOfficial: F + Percentage: 4.9 + - CountryCode: TZA + Language: Gogo + IsOfficial: F + Percentage: 3.9 + - CountryCode: TZA + Language: Ha + IsOfficial: F + Percentage: 3.5 + - CountryCode: TZA + Language: Haya + IsOfficial: F + Percentage: 5.9 + - CountryCode: TZA + Language: Hehet + IsOfficial: F + Percentage: 6.9 + - CountryCode: TZA + Language: Luguru + IsOfficial: F + Percentage: 4.9 + - CountryCode: TZA + Language: Makonde + IsOfficial: F + Percentage: 5.9 + - CountryCode: TZA + Language: Nyakusa + IsOfficial: F + Percentage: 5.4 + - CountryCode: TZA + Language: Nyamwesi + IsOfficial: F + Percentage: 21.1 + - CountryCode: TZA + Language: Shambala + IsOfficial: F + Percentage: 4.3 + - CountryCode: TZA + Language: Swahili + IsOfficial: T + Percentage: 8.8 + - CountryCode: UGA + Language: Acholi + IsOfficial: F + Percentage: 4.4 + - CountryCode: UGA + Language: Ganda + IsOfficial: F + Percentage: 18.1 + - CountryCode: UGA + Language: Gisu + IsOfficial: F + Percentage: 4.5 + - CountryCode: UGA + Language: Kiga + IsOfficial: F + Percentage: 8.3 + - CountryCode: UGA + Language: Lango + IsOfficial: F + Percentage: 5.9 + - CountryCode: UGA + Language: Lugbara + IsOfficial: F + Percentage: 4.7 + - CountryCode: UGA + Language: Nkole + IsOfficial: F + Percentage: 10.7 + - CountryCode: UGA + Language: Rwanda + IsOfficial: F + Percentage: 3.2 + - CountryCode: UGA + Language: Soga + IsOfficial: F + Percentage: 8.2 + - CountryCode: UGA + Language: Teso + IsOfficial: F + Percentage: 6.0 + - CountryCode: UKR + Language: Belorussian + IsOfficial: F + Percentage: 0.3 + - CountryCode: UKR + Language: Bulgariana + IsOfficial: F + Percentage: 0.3 + - CountryCode: UKR + Language: Hungarian + IsOfficial: F + Percentage: 0.3 + - CountryCode: UKR + Language: Polish + IsOfficial: F + Percentage: 0.1 + - CountryCode: UKR + Language: Romanian + IsOfficial: F + Percentage: 0.7 + - CountryCode: UKR + Language: Russian + IsOfficial: F + Percentage: 32.9 + - CountryCode: UKR + Language: Ukrainian + IsOfficial: T + Percentage: 64.7 + - CountryCode: UMI + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: URY + Language: Spanish + IsOfficial: T + Percentage: 95.7 + - CountryCode: USA + Language: Chinese + IsOfficial: F + Percentage: 0.6 + - CountryCode: USA + Language: English + IsOfficial: T + Percentage: 86.2 + - CountryCode: USA + Language: French + IsOfficial: F + Percentage: 0.7 + - CountryCode: USA + Language: German + IsOfficial: F + Percentage: 0.7 + - CountryCode: USA + Language: Italian + IsOfficial: F + Percentage: 0.6 + - CountryCode: USA + Language: Japanese + IsOfficial: F + Percentage: 0.2 + - CountryCode: USA + Language: Korean + IsOfficial: F + Percentage: 0.3 + - CountryCode: USA + Language: Polish + IsOfficial: F + Percentage: 0.3 + - CountryCode: USA + Language: Portuguese + IsOfficial: F + Percentage: 0.2 + - CountryCode: USA + Language: Spanish + IsOfficial: F + Percentage: 7.5 + - CountryCode: USA + Language: Tagalog + IsOfficial: F + Percentage: 0.4 + - CountryCode: USA + Language: Vietnamese + IsOfficial: F + Percentage: 0.2 + - CountryCode: UZB + Language: Karakalpak + IsOfficial: F + Percentage: 2.0 + - CountryCode: UZB + Language: Kazakh + IsOfficial: F + Percentage: 3.8 + - CountryCode: UZB + Language: Russian + IsOfficial: F + Percentage: 10.9 + - CountryCode: UZB + Language: Tadzhik + IsOfficial: F + Percentage: 4.4 + - CountryCode: UZB + Language: Tatar + IsOfficial: F + Percentage: 1.8 + - CountryCode: UZB + Language: Uzbek + IsOfficial: T + Percentage: 72.6 + - CountryCode: VAT + Language: Italian + IsOfficial: T + Percentage: 0.0 + - CountryCode: VCT + Language: Creole English + IsOfficial: F + Percentage: 99.1 + - CountryCode: VCT + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: VEN + Language: Goajiro + IsOfficial: F + Percentage: 0.4 + - CountryCode: VEN + Language: Spanish + IsOfficial: T + Percentage: 96.9 + - CountryCode: VEN + Language: Warrau + IsOfficial: F + Percentage: 0.1 + - CountryCode: VGB + Language: English + IsOfficial: T + Percentage: 0.0 + - CountryCode: VIR + Language: English + IsOfficial: T + Percentage: 81.7 + - CountryCode: VIR + Language: French + IsOfficial: F + Percentage: 2.5 + - CountryCode: VIR + Language: Spanish + IsOfficial: F + Percentage: 13.3 + - CountryCode: VNM + Language: Chinese + IsOfficial: F + Percentage: 1.4 + - CountryCode: VNM + Language: Khmer + IsOfficial: F + Percentage: 1.4 + - CountryCode: VNM + Language: Man + IsOfficial: F + Percentage: 0.7 + - CountryCode: VNM + Language: Miao + IsOfficial: F + Percentage: 0.9 + - CountryCode: VNM + Language: Muong + IsOfficial: F + Percentage: 1.5 + - CountryCode: VNM + Language: Nung + IsOfficial: F + Percentage: 1.1 + - CountryCode: VNM + Language: Thai + IsOfficial: F + Percentage: 1.6 + - CountryCode: VNM + Language: Tho + IsOfficial: F + Percentage: 1.8 + - CountryCode: VNM + Language: Vietnamese + IsOfficial: T + Percentage: 86.8 + - CountryCode: VUT + Language: Bislama + IsOfficial: T + Percentage: 56.6 + - CountryCode: VUT + Language: English + IsOfficial: T + Percentage: 28.3 + - CountryCode: VUT + Language: French + IsOfficial: T + Percentage: 14.2 + - CountryCode: WLF + Language: Futuna + IsOfficial: F + Percentage: 0.0 + - CountryCode: WLF + Language: Wallis + IsOfficial: F + Percentage: 0.0 + - CountryCode: WSM + Language: English + IsOfficial: T + Percentage: 0.6 + - CountryCode: WSM + Language: Samoan + IsOfficial: T + Percentage: 47.5 + - CountryCode: WSM + Language: Samoan-English + IsOfficial: F + Percentage: 52.0 + - CountryCode: YEM + Language: Arabic + IsOfficial: T + Percentage: 99.6 + - CountryCode: YEM + Language: Soqutri + IsOfficial: F + Percentage: 0.0 + - CountryCode: YUG + Language: Albaniana + IsOfficial: F + Percentage: 16.5 + - CountryCode: YUG + Language: Hungarian + IsOfficial: F + Percentage: 3.4 + - CountryCode: YUG + Language: Macedonian + IsOfficial: F + Percentage: 0.5 + - CountryCode: YUG + Language: Romani + IsOfficial: F + Percentage: 1.4 + - CountryCode: YUG + Language: Serbo-Croatian + IsOfficial: T + Percentage: 75.2 + - CountryCode: YUG + Language: Slovak + IsOfficial: F + Percentage: 0.7 + - CountryCode: ZAF + Language: Afrikaans + IsOfficial: T + Percentage: 14.3 + - CountryCode: ZAF + Language: English + IsOfficial: T + Percentage: 8.5 + - CountryCode: ZAF + Language: Ndebele + IsOfficial: F + Percentage: 1.5 + - CountryCode: ZAF + Language: Northsotho + IsOfficial: F + Percentage: 9.1 + - CountryCode: ZAF + Language: Southsotho + IsOfficial: F + Percentage: 7.6 + - CountryCode: ZAF + Language: Swazi + IsOfficial: F + Percentage: 2.5 + - CountryCode: ZAF + Language: Tsonga + IsOfficial: F + Percentage: 4.3 + - CountryCode: ZAF + Language: Tswana + IsOfficial: F + Percentage: 8.1 + - CountryCode: ZAF + Language: Venda + IsOfficial: F + Percentage: 2.2 + - CountryCode: ZAF + Language: Xhosa + IsOfficial: T + Percentage: 17.7 + - CountryCode: ZAF + Language: Zulu + IsOfficial: T + Percentage: 22.7 + - CountryCode: ZMB + Language: Bemba + IsOfficial: F + Percentage: 29.7 + - CountryCode: ZMB + Language: Chewa + IsOfficial: F + Percentage: 5.7 + - CountryCode: ZMB + Language: Lozi + IsOfficial: F + Percentage: 6.4 + - CountryCode: ZMB + Language: Nsenga + IsOfficial: F + Percentage: 4.3 + - CountryCode: ZMB + Language: Nyanja + IsOfficial: F + Percentage: 7.8 + - CountryCode: ZMB + Language: Tonga + IsOfficial: F + Percentage: 11.0 + - CountryCode: ZWE + Language: English + IsOfficial: T + Percentage: 2.2 + - CountryCode: ZWE + Language: Ndebele + IsOfficial: F + Percentage: 16.2 + - CountryCode: ZWE + Language: Nyanja + IsOfficial: F + Percentage: 2.2 + - CountryCode: ZWE + Language: Shona + IsOfficial: F + Percentage: 72.1 + + diff --git a/docker-compose.yml b/docker-compose.yml index 97ce1b407..1f399eee0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,6 +8,7 @@ volumes: psql13: mariadb: cockroachdb: + bigquery: services: @@ -101,5 +102,12 @@ services: ports: - 26257:26257 command: start-single-node --insecure - - + bigquery: + image: ghcr.io/goccy/bigquery-emulator:latest + volumes: + - ./dev/docker_bigquery:/data + - ./dev/docker_bigquery:/docker_init + ports: + - 9050:9050 + - 9060:9060 + entrypoint: sh -c 'chmod +x /docker_init/data.sh; /docker_init/data.sh' diff --git a/package.json b/package.json index 15e0bad19..4dd4ef102 100644 --- a/package.json +++ b/package.json @@ -24,16 +24,19 @@ "all:lint": "yarn workspace beekeeper-studio lint && yarn workspace sqltools lint && npx eslint 'shared/**' --fix" }, "devDependencies": { + "@google-cloud/bigquery": "^6.2.0", "@typescript-eslint/eslint-plugin": "^4.18.0", "@typescript-eslint/parser": "^4.18.0", "@vue/eslint-config-typescript": "^11.0.2", "eslint": "^6.7.2", "eslint-plugin-vue": "^6.2.2", - "npm-run-all": "^4.1.5" + "npm-run-all": "^4.1.5", + "vue-cli-plugin-electron-builder": "latest", + "log-timestamp": "latest" }, "resolutions": { - "nan": "2.17.0", - "node-abi": "^3.34.0", - "cpu-features": "./.yarn/packages/empty-package" + "nan": "2.17.0", + "node-abi": "^3.34.0", + "cpu-features": "./.yarn/packages/empty-package" } } diff --git a/tsconfig.base.json b/tsconfig.base.json index 07904a5b6..8d3b2d04e 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -30,4 +30,4 @@ "dist_electron", "dist" ] -} \ No newline at end of file +} diff --git a/yarn.lock b/yarn.lock index 23d9cf0f1..0d7bf66e9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1816,6 +1816,61 @@ resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== +"@google-cloud/bigquery@^6.2.0": + version "6.2.1" + resolved "https://registry.yarnpkg.com/@google-cloud/bigquery/-/bigquery-6.2.1.tgz#29907fa6050b457de18c5ee5fd32b7c6207bd9f8" + integrity sha512-C/tcM3jQ3RU8pKHHxj702ouIfGZ9GAQ5U+ZpvS/o4B3yWtqmnG3TITL5oRnzDjEKeMTNu5C6z3/nFtix3GKlqA== + dependencies: + "@google-cloud/common" "^4.0.0" + "@google-cloud/paginator" "^4.0.0" + "@google-cloud/precise-date" "^3.0.1" + "@google-cloud/promisify" "^3.0.0" + arrify "^2.0.1" + big.js "^6.0.0" + duplexify "^4.0.0" + extend "^3.0.2" + is "^3.3.0" + stream-events "^1.0.5" + uuid "^9.0.0" + +"@google-cloud/common@^4.0.0": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-4.0.3.tgz#d4324ac83087385d727593f7e1b6d81ee66442cf" + integrity sha512-fUoMo5b8iAKbrYpneIRV3z95AlxVJPrjpevxs4SKoclngWZvTXBSGpNisF5+x5m+oNGve7jfB1e6vNBZBUs7Fw== + dependencies: + "@google-cloud/projectify" "^3.0.0" + "@google-cloud/promisify" "^3.0.0" + arrify "^2.0.1" + duplexify "^4.1.1" + ent "^2.2.0" + extend "^3.0.2" + google-auth-library "^8.0.2" + retry-request "^5.0.0" + teeny-request "^8.0.0" + +"@google-cloud/paginator@^4.0.0": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@google-cloud/paginator/-/paginator-4.0.1.tgz#5fb8793d4f84d18c50a6f2fad3dadab8d2c533ef" + integrity sha512-6G1ui6bWhNyHjmbYwavdN7mpVPRBtyDg/bfqBTAlwr413On2TnFNfDxc9UhTJctkgoCDgQXEKiRPLPR9USlkbQ== + dependencies: + arrify "^2.0.0" + extend "^3.0.2" + +"@google-cloud/precise-date@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@google-cloud/precise-date/-/precise-date-3.0.1.tgz#1e6659a14af662442037b8f4d20dbc82bf1a78bd" + integrity sha512-crK2rgNFfvLoSgcKJY7ZBOLW91IimVNmPfi1CL+kMTf78pTJYd29XqEVedAeBu4DwCJc0EDIp1MpctLgoPq+Uw== + +"@google-cloud/projectify@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@google-cloud/projectify/-/projectify-3.0.0.tgz#302b25f55f674854dce65c2532d98919b118a408" + integrity sha512-HRkZsNmjScY6Li8/kb70wjGlDDyLkVk3KvoEo9uIoxSjYLJasGiCch9+PqRVDOCGUFvEIqyogl+BeqILL4OJHA== + +"@google-cloud/promisify@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@google-cloud/promisify/-/promisify-3.0.1.tgz#8d724fb280f47d1ff99953aee0c1669b25238c2e" + integrity sha512-z1CjRjtQyBOYL+5Qr9DdYIfrdLBe746jRTYfaYU6MeXkqp7UfYs/jX16lFFVzZ7PGEJvqZNqYUEtb1mvDww4pA== + "@hapi/address@2.x.x": version "2.1.4" resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" @@ -3924,6 +3979,11 @@ arrify@^1.0.1: resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== +arrify@^2.0.0, arrify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" + integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== + asar@^3.0.3: version "3.2.0" resolved "https://registry.yarnpkg.com/asar/-/asar-3.2.0.tgz#e6edb5edd6f627ebef04db62f771c61bea9c1221" @@ -4278,7 +4338,7 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base64-js@^1.0.2, base64-js@^1.3.1, base64-js@^1.5.1: +base64-js@^1.0.2, base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== @@ -4341,6 +4401,16 @@ big.js@^5.2.2: resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== +big.js@^6.0.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-6.2.1.tgz#7205ce763efb17c2e41f26f121c420c6a7c2744f" + integrity sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ== + +bignumber.js@^9.0.0: + version "9.1.1" + resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.1.tgz#c4df7dc496bd849d4c9464344c1aa74228b4dac6" + integrity sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig== + binary-extensions@^1.0.0: version "1.13.1" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" @@ -6461,7 +6531,7 @@ duplexify@^3.4.2, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" -duplexify@^4.1.1: +duplexify@^4.0.0, duplexify@^4.1.1: version "4.1.2" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.2.tgz#18b4f8d28289132fa0b9573c898d9f903f81c7b0" integrity sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw== @@ -6484,7 +6554,7 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -ecdsa-sig-formatter@1.0.11: +ecdsa-sig-formatter@1.0.11, ecdsa-sig-formatter@^1.0.11: version "1.0.11" resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== @@ -6685,6 +6755,11 @@ enhanced-resolve@^4.0.0, enhanced-resolve@^4.5.0: memory-fs "^0.5.0" tapable "^1.0.0" +ent@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" + integrity sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA== + entities@2.2.0, entities@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" @@ -7315,7 +7390,7 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2: assign-symbols "^1.0.0" is-extendable "^1.0.1" -extend@~3.0.2: +extend@^3.0.2, extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== @@ -7408,6 +7483,11 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== +fast-text-encoding@^1.0.0: + version "1.0.6" + resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz#0aa25f7f638222e3396d72bf936afcf1d42d6867" + integrity sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w== + fast-xml-parser@3.19.0: version "3.19.0" resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz#cb637ec3f3999f51406dd8ff0e6fc4d83e520d01" @@ -7848,6 +7928,16 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" +gaxios@^5.0.0, gaxios@^5.0.1: + version "5.1.3" + resolved "https://registry.yarnpkg.com/gaxios/-/gaxios-5.1.3.tgz#f7fa92da0fe197c846441e5ead2573d4979e9013" + integrity sha512-95hVgBRgEIRQQQHIbnxBXeHbW4TqFk4ZDJW7wmVtvYar72FdhRIo1UGOLS2eRAKCPEdPBWu+M7+A33D9CdX9rA== + dependencies: + extend "^3.0.2" + https-proxy-agent "^5.0.0" + is-stream "^2.0.0" + node-fetch "^2.6.9" + gaze@^1.0.0: version "1.1.3" resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" @@ -7855,6 +7945,14 @@ gaze@^1.0.0: dependencies: globule "^1.0.0" +gcp-metadata@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-5.3.0.tgz#6f45eb473d0cb47d15001476b48b663744d25408" + integrity sha512-FNTkdNEnBdlqF2oatizolQqNANMrcqJt6AAYt99B3y1aLLC8Hc5IOBb+ZnnzllodEEf6xMBp6wRcBbc16fa65w== + dependencies: + gaxios "^5.0.0" + json-bigint "^1.0.0" + generate-function@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f" @@ -8138,6 +8236,28 @@ good-listener@^1.2.2: dependencies: delegate "^3.1.2" +google-auth-library@^8.0.2: + version "8.9.0" + resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-8.9.0.tgz#15a271eb2ec35d43b81deb72211bd61b1ef14dd0" + integrity sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg== + dependencies: + arrify "^2.0.0" + base64-js "^1.3.0" + ecdsa-sig-formatter "^1.0.11" + fast-text-encoding "^1.0.0" + gaxios "^5.0.0" + gcp-metadata "^5.3.0" + gtoken "^6.1.0" + jws "^4.0.0" + lru-cache "^6.0.0" + +google-p12-pem@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-4.0.1.tgz#82841798253c65b7dc2a4e5fe9df141db670172a" + integrity sha512-WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ== + dependencies: + node-forge "^1.3.1" + got@^9.6.0: version "9.6.0" resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" @@ -8185,6 +8305,15 @@ growly@^1.3.0: resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" integrity sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw== +gtoken@^6.1.0: + version "6.1.2" + resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-6.1.2.tgz#aeb7bdb019ff4c3ba3ac100bbe7b6e74dce0e8bc" + integrity sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ== + dependencies: + gaxios "^5.0.1" + google-p12-pem "^4.0.0" + jws "^4.0.0" + gzip-size@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" @@ -9249,6 +9378,11 @@ is-yarn-global@^0.3.0: resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== +is@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79" + integrity sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg== + isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -9909,6 +10043,13 @@ jsesc@~0.5.0: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== +json-bigint@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-bigint/-/json-bigint-1.0.0.tgz#ae547823ac0cad8398667f8cd9ef4730f5b01ff1" + integrity sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ== + dependencies: + bignumber.js "^9.0.0" + json-buffer@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" @@ -10423,6 +10564,11 @@ lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.1 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +log-prefix@0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/log-prefix/-/log-prefix-0.1.1.tgz#3ec492138c8044c9f9732298492dca87850cac90" + integrity sha512-aP1Lst8OCdZKATqzXDN0JBissNVZuiKLyo6hOXDBxaQ1jHDsaxh2J1i5Pp0zMy6ayTKDWfUlLMXyLaQe1PJ48g== + log-symbols@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" @@ -10430,6 +10576,13 @@ log-symbols@^2.2.0: dependencies: chalk "^2.0.1" +log-timestamp@latest: + version "0.3.0" + resolved "https://registry.yarnpkg.com/log-timestamp/-/log-timestamp-0.3.0.tgz#2e10f1f0db872674ef3ecf53d6a312840acae45f" + integrity sha512-luRz6soxijd1aJh0GkLXFjKABihxthvTfWTzu3XhCgg5EivG2bsTpSd63QFbUgS+/KmFtL+0RfSpeaD2QvOV8Q== + dependencies: + log-prefix "0.1.1" + loglevel@^1.6.8: version "1.8.0" resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.8.0.tgz#e7ec73a57e1e7b419cb6c6ac06bf050b67356114" @@ -11172,11 +11325,23 @@ node-cache@^4.1.1: clone "2.x" lodash "^4.17.15" +node-fetch@^2.6.1, node-fetch@^2.6.9: + version "2.6.12" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.12.tgz#02eb8e22074018e3d5a83016649d04df0e348fba" + integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g== + dependencies: + whatwg-url "^5.0.0" + node-forge@^0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== +node-forge@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + node-gyp@^7.1.0: version "7.1.2" resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-7.1.2.tgz#21a810aebb187120251c3bcec979af1587b188ae" @@ -13247,6 +13412,14 @@ ret@~0.1.10: resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== +retry-request@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/retry-request/-/retry-request-5.0.2.tgz#143d85f90c755af407fcc46b7166a4ba520e44da" + integrity sha512-wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ== + dependencies: + debug "^4.1.1" + extend "^3.0.2" + retry@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" @@ -14178,6 +14351,13 @@ stream-each@^1.1.0: end-of-stream "^1.1.0" stream-shift "^1.0.0" +stream-events@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.5.tgz#bbc898ec4df33a4902d892333d47da9bf1c406d5" + integrity sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg== + dependencies: + stubs "^3.0.0" + stream-http@^2.7.2: version "2.8.3" resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" @@ -14366,6 +14546,11 @@ strip-json-comments@^3.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== +stubs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b" + integrity sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw== + stylehacks@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" @@ -14552,6 +14737,17 @@ tedious@^14.0.0: punycode "^2.1.0" sprintf-js "^1.1.2" +teeny-request@^8.0.0: + version "8.0.3" + resolved "https://registry.yarnpkg.com/teeny-request/-/teeny-request-8.0.3.tgz#5cb9c471ef5e59f2fca8280dc3c5909595e6ca24" + integrity sha512-jJZpA5He2y52yUhA7pyAGZlgQpcB+xLjcN0eUFxr9c8hP/H7uOXbBNVo/O0C/xVfJLJs680jvkFgVJEEvk9+ww== + dependencies: + http-proxy-agent "^5.0.0" + https-proxy-agent "^5.0.0" + node-fetch "^2.6.1" + stream-events "^1.0.5" + uuid "^9.0.0" + temp-file@^3.4.0: version "3.4.0" resolved "https://registry.yarnpkg.com/temp-file/-/temp-file-3.4.0.tgz#766ea28911c683996c248ef1a20eea04d51652c7" @@ -14848,6 +15044,11 @@ tr46@^1.0.1: dependencies: punycode "^2.1.0" +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + trim-newlines@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" @@ -15438,6 +15639,11 @@ uuid@^8.3.0, uuid@^8.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +uuid@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" + integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg== + v-hotkey@^0.8.0: version "0.8.0" resolved "https://registry.yarnpkg.com/v-hotkey/-/v-hotkey-0.8.0.tgz#134d64b30a3eeeb53bcb00eba81fdf74e21a032a" @@ -15506,7 +15712,7 @@ vue-class-component@^7.1.0, vue-class-component@^7.2.3: resolved "https://registry.yarnpkg.com/vue-class-component/-/vue-class-component-7.2.6.tgz#8471e037b8e4762f5a464686e19e5afc708502e4" integrity sha512-+eaQXVrAm/LldalI272PpDe3+i4mPis0ORiMYxF6Ae4hyuCh15W8Idet7wPUEs4N4YptgFHGys4UrgNQOMyO6w== -vue-cli-plugin-electron-builder@~2.1.1: +vue-cli-plugin-electron-builder@latest, vue-cli-plugin-electron-builder@~2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/vue-cli-plugin-electron-builder/-/vue-cli-plugin-electron-builder-2.1.1.tgz#de8bed25b32e73e28dd08061dd2a3c6bfff73227" integrity sha512-ZrxFZ2uxgpwyFUE8LtguYqaTzSfZ1osME1uFlIj/Iz7GtLrATqs23n/BkKEpyEf5nYNAylzIM8ykGAfH/0QdmA== @@ -15802,6 +16008,11 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + webidl-conversions@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" @@ -15984,6 +16195,14 @@ whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + whatwg-url@^6.4.1: version "6.5.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"